mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-03 11:20:37 -04:00
Reference iTunes playlist by name hash rather than native playlist id
This commit is contained in:
parent
27492139d9
commit
9239e0ad36
@ -207,8 +207,8 @@ void rend_callback(void *info) {
|
|||||||
rend_stoprunloop();
|
rend_stoprunloop();
|
||||||
break;
|
break;
|
||||||
case REND_MSG_TYPE_STATUS:
|
case REND_MSG_TYPE_STATUS:
|
||||||
DPRINTF(E_DBG,L_REND,"Status inquiry -- returning 0\n");
|
DPRINTF(E_DBG,L_REND,"Status inquiry -- returning 1\n");
|
||||||
rend_send_response(0); /* success */
|
rend_send_response(1); /* success */
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
@ -933,8 +933,14 @@ int scan_xml_playlists_section(int action, char *info) {
|
|||||||
current_id=0;
|
current_id=0;
|
||||||
if(dont_scan == 0) {
|
if(dont_scan == 0) {
|
||||||
DPRINTF(E_DBG,L_SCAN,"Creating playlist for %s\n",current_name);
|
DPRINTF(E_DBG,L_SCAN,"Creating playlist for %s\n",current_name);
|
||||||
|
/* we won't actually use the iTunes pl_id, as it seems
|
||||||
|
* to change for no good reason. We'll hash the name,
|
||||||
|
* instead. */
|
||||||
|
|
||||||
/* delete the old one first */
|
/* delete the old one first */
|
||||||
/* FIXME: Error handling */
|
/* FIXME: Error handling */
|
||||||
|
native_plid = util_djb_hash_str(current_name);
|
||||||
|
|
||||||
pm3u = db_fetch_playlist(NULL,scan_xml_file,native_plid);
|
pm3u = db_fetch_playlist(NULL,scan_xml_file,native_plid);
|
||||||
if(pm3u) {
|
if(pm3u) {
|
||||||
db_delete_playlist(NULL,pm3u->id);
|
db_delete_playlist(NULL,pm3u->id);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user