1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-11-03 04:17:18 -05:00

Fixed the copypasta mistake of using the PLACEHOLDER_ARTIST value in the PLACEHOLDER_ALBUM conditional.

This commit is contained in:
redswitchio 2017-07-05 05:09:26 -04:00
parent 73299669ce
commit 582c0b67ad

View File

@ -160,7 +160,7 @@ buildReencodeCommand(const char *extension, const char *fileName,
dec_str = tmpStr;
}
if (strstr(dec_str, PLACEHOLDER_ALBUM) != NULL) {
char *tmpStr = replaceString(dec_str, PLACEHOLDER_ARTIST,
char *tmpStr = replaceString(dec_str, PLACEHOLDER_ALBUM,
localAlbum);
xfree(dec_str);
dec_str = tmpStr;