From ff0263b3a43f894964467c6880645c3258c57b5d Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Sat, 10 Nov 2018 09:22:16 +0000 Subject: [PATCH] Update: Added warning about wrong type of metadata update. See: #2017 --- src/format_vorbis.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/format_vorbis.c b/src/format_vorbis.c index 6542dfaa..134870a0 100644 --- a/src/format_vorbis.c +++ b/src/format_vorbis.c @@ -416,6 +416,8 @@ static void vorbis_set_tag (format_plugin_t *plugin, const char *tag, const char vorbis_codec_t *source_vorbis; char *value; + ICECAST_LOG_WARN("Not officially supported metadata update detected, please inform the source client software vendor that they should fix their software!"); + /* avoid updating if multiple codecs in use */ if (codec && codec->next == NULL) source_vorbis = codec->specific;