mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-25 12:06:12 -05:00
Swap artwork arguments so destination evbuffer comes first
This commit is contained in:
@@ -2375,9 +2375,9 @@ daap_reply_extra_data(struct evhttp_request *req, struct evbuffer *evbuf, char *
|
||||
}
|
||||
|
||||
if (strcmp(uri[2], "groups") == 0)
|
||||
ret = artwork_get_group(id, max_w, max_h, evbuf);
|
||||
ret = artwork_get_group(evbuf, id, max_w, max_h);
|
||||
else if (strcmp(uri[2], "items") == 0)
|
||||
ret = artwork_get_item(id, max_w, max_h, evbuf);
|
||||
ret = artwork_get_item(evbuf, id, max_w, max_h);
|
||||
|
||||
switch (ret)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user