mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Update: Added a INFO level message about using the default charset for MP3 mounts
This commit is contained in:
parent
f1f0b165dd
commit
5bd33883de
@ -225,8 +225,10 @@ static void format_mp3_apply_settings (client_t *client, format_plugin_t *format
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (format->charset == NULL)
|
if (format->charset == NULL) {
|
||||||
format->charset = strdup ("ISO8859-1");
|
ICECAST_LOG_INFO("No charset given for mount %#H with source client %zu, assuming ISO8859-1", mount ? mount->mountname : NULL, client->con->id);
|
||||||
|
format->charset = strdup("ISO8859-1");
|
||||||
|
}
|
||||||
|
|
||||||
ICECAST_LOG_DEBUG("sending metadata interval %d", source_mp3->interval);
|
ICECAST_LOG_DEBUG("sending metadata interval %d", source_mp3->interval);
|
||||||
ICECAST_LOG_DEBUG("charset %s", format->charset);
|
ICECAST_LOG_DEBUG("charset %s", format->charset);
|
||||||
|
Loading…
Reference in New Issue
Block a user