Ignore empty ICY StreamTitles

This commit is contained in:
ejurgensen 2015-04-12 18:15:06 +02:00
parent 658a70f650
commit 8a0994860f
1 changed files with 4 additions and 1 deletions

View File

@ -732,7 +732,10 @@ metadata_check_icy(void)
if (!metadata)
return;
if (!changed)
if (!changed || !metadata->title)
goto no_update;
if (metadata->title[0] == '\0')
goto no_update;
metadata->id = cur_streaming->id;