This commit is contained in:
e2002
2022-08-23 15:50:56 +03:00
parent 223bae1923
commit de9753058d
6 changed files with 34 additions and 30 deletions

View File

@@ -57,7 +57,11 @@ void audio_showstation(const char *info) {
void audio_showstreamtitle(const char *info) {
if (strlen(info) > 0) {
bool p = printable(info);
#ifdef DEBUG_TITLES
config.setTitle(DEBUG_TITLES);
#else
config.setTitle(p?info:"*****");
#endif
netserver.requestOnChange(TITLE, 0);
}
}