- pictureviewer: masking some more chars in event logo names

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2019-04-04 20:55:30 +02:00
committed by Thilo Graf
parent cd8d076d35
commit c0971287ad

View File

@@ -576,6 +576,9 @@ bool CPictureViewer::GetLogoName(const uint64_t &ChannelID, const std::string &C
EventName = str_replace(";", "-", EventName);
EventName = str_replace(":", "-", EventName);
EventName = str_replace("+", "-", EventName);
EventName = str_replace("'", "-", EventName);
EventName = str_replace("?", "-", EventName);
EventName = str_replace("!", "-", EventName);
EventName = str_replace("&", "-", EventName);
EventName = str_replace("ä", "ae", EventName);
EventName = str_replace("ö", "oe", EventName);