[jsonapi] Add non-library uris to the queue

This commit is contained in:
chme 2018-03-20 21:53:38 +01:00
parent 7bab990eb3
commit 843fbeb066
1 changed files with 6 additions and 1 deletions

View File

@ -1618,7 +1618,12 @@ jsonapi_reply_queue_tracks_add(struct httpd_request *hreq)
}
else
{
DPRINTF(E_LOG, L_WEB, "Invalid uri '%s'\n", uri);
ret = library_queue_add(uri);
if (ret != LIBRARY_OK)
{
DPRINTF(E_LOG, L_WEB, "Invalid uri '%s'\n", uri);
break;
}
}
}
while ((uri = strtok(NULL, ",")));