pictureviewer: masking some more chars in event logo names

Origin commit data
------------------
Branch: ni/coolstream
Commit: 6a1c0ab46b
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-04-04 (Thu, 04 Apr 2019)

Origin message was:
------------------
- pictureviewer: masking some more chars in event logo names

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2019-04-04 20:55:30 +02:00
parent 79645110b4
commit aff70ef433

View File

@@ -574,6 +574,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);