[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:
ejurgensen 2020-04-25 21:59:18 +02:00
parent 8510f7e5f2
commit daf3922650

View File

@ -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)",