Lower log level for missing revision-number in client update request. This is some clients' normal behavior, so we shouldn't need to need to see a message about it in the error log.
This commit is contained in:
parent
6cfb37fb10
commit
e431b04310
|
@ -1009,7 +1009,7 @@ daap_reply_update(struct evhttp_request *req, struct evbuffer *evbuf, char **uri
|
|||
param = evhttp_find_header(query, "revision-number");
|
||||
if (!param)
|
||||
{
|
||||
DPRINTF(E_LOG, L_DAAP, "Missing revision-number in client update request\n");
|
||||
DPRINTF(E_DBG, L_DAAP, "Missing revision-number in client update request\n");
|
||||
/* Some players (Amarok, Banshee) don't supply a revision number.
|
||||
They get a standard update of everything. */
|
||||
param = "1"; /* Default to "1" will insure update */
|
||||
|
|
Loading…
Reference in New Issue