mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-13 16:03:23 -05:00
Allow 0 as an initial value of revision-number
This commit is contained in:
parent
c0fbab150f
commit
9c90abf603
@ -1495,7 +1495,7 @@ dacp_reply_playstatusupdate(struct evhttp_request *req, struct evbuffer *evbuf,
|
||||
return;
|
||||
}
|
||||
|
||||
if (reqd_rev == 1)
|
||||
if ((reqd_rev == 0) || (reqd_rev == 1))
|
||||
{
|
||||
ret = make_playstatusupdate(evbuf);
|
||||
if (ret < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user