mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-24 22:25:56 -05:00
[artwork] Remove http instance of artwork_source for embedded
Commit 8510f7e
should mean that it is not required any more, since we won't be
probing http streams unless we know they have artwork.
This commit is contained in:
parent
8510f7e5f2
commit
daf3922650
@ -236,7 +236,7 @@ static struct artwork_source artwork_item_source[] =
|
||||
{
|
||||
.name = "embedded",
|
||||
.handler = source_item_embedded_get,
|
||||
.data_kinds = (1 << DATA_KIND_FILE),
|
||||
.data_kinds = (1 << DATA_KIND_FILE) | (1 << DATA_KIND_HTTP),
|
||||
.cache = ON_SUCCESS | ON_FAILURE,
|
||||
},
|
||||
{
|
||||
@ -293,13 +293,6 @@ static struct artwork_source artwork_item_source[] =
|
||||
.data_kinds = (1 << DATA_KIND_HTTP) | (1 << DATA_KIND_PIPE),
|
||||
.cache = STASH,
|
||||
},
|
||||
{
|
||||
// Low priority because it can be slow - mainly used for remote Podcasts
|
||||
.name = "embedded http",
|
||||
.handler = source_item_embedded_get,
|
||||
.data_kinds = (1 << DATA_KIND_HTTP),
|
||||
.cache = ON_SUCCESS | ON_FAILURE,
|
||||
},
|
||||
{
|
||||
// The Cover Art Archive seems rather slow, so low priority
|
||||
.name = "Cover Art Archive (files)",
|
||||
|
Loading…
Reference in New Issue
Block a user