diff options
-rw-r--r-- | vdr-vdrmanager/helpers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vdr-vdrmanager/helpers.cpp b/vdr-vdrmanager/helpers.cpp index 9a5e8bb..c6d819d 100644 --- a/vdr-vdrmanager/helpers.cpp +++ b/vdr-vdrmanager/helpers.cpp @@ -164,9 +164,9 @@ string cHelpers::GetChannelsIntern(string wantedChannels) { snprintf(number, sizeof(number) - 1, "C%d", channel->Number()); result += number; result += ":"; - result += channel->Name(); + result += MapSpecialChars(channel->Name()); result += ":"; - result += channel->Provider(); + result += MapSpecialChars(channel->Provider()); result += ":"; result += channel->GetChannelID().ToString(); result += ":"; |