From cc1debc94893690b9bc951391be0e69977657be6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 8 Nov 2010 18:46:14 +0100 Subject: output/shout: artist comes first in stream title After popular demand, I've switched the order of "artist" and "title" in the stream title. There is no standard, and there is no reliable way to parse those from the stream title. --- src/output/shout_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/output') diff --git a/src/output/shout_plugin.c b/src/output/shout_plugin.c index 4412d26ff..dbc56f337 100644 --- a/src/output/shout_plugin.c +++ b/src/output/shout_plugin.c @@ -483,7 +483,7 @@ shout_tag_to_metadata(const struct tag *tag, char *dest, size_t size) } } - snprintf(dest, size, "%s - %s", title, artist); + snprintf(dest, size, "%s - %s", artist, title); } static void my_shout_set_tag(void *data, -- cgit v1.2.3