[artwork] Allow longer tokens in auth headers towards online sources

Fixes "Cannot make request for online artwork, auth header is too long" error
This commit is contained in:
ejurgensen 2025-02-11 16:44:47 +01:00
parent 5cbc520712
commit 792e04b47d

View File

@ -1296,7 +1296,7 @@ online_source_history_update(const struct online_source *src, int id, uint32_t r
static int
auth_header_add(struct keyval *headers, const struct online_source *src)
{
char auth_header[256];
char auth_header[512];
char *auth_key;
char *auth_secret;
int ret;