This commit is contained in:
e2002
2025-08-26 11:09:16 +03:00
parent e63d6f7cdd
commit a5f91155b5
3 changed files with 7 additions and 6 deletions

View File

@@ -84,11 +84,9 @@ void audio_id3album(const char *info){
if(strlen(config.station.title)==0){
config.setTitle(info);
}else{
size_t tbs = sizeof(config.tmpBuf);
strlcat(config.tmpBuf, config.station.title, tbs);
strlcat(config.tmpBuf, " - ", tbs);
strlcat(config.tmpBuf, info, tbs);
config.setTitle(config.tmpBuf);
char tmp[BUFLEN];
snprintf(tmp, BUFLEN, "%s - %s", config.station.title, info);
config.setTitle(tmp);
}
}
}

View File

@@ -2,7 +2,7 @@
#define options_h
#pragma once
#define YOVERSION "0.9.680"
#define YOVERSION "0.9.682"
/*******************************************************
DO NOT EDIT THIS FILE.