moviebrowser: fix display of control chars in movieinfo

Origin commit data
------------------
Branch: ni/coolstream
Commit: ce11bd1fd8
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-12-25 (Wed, 25 Dec 2019)

Origin message was:
------------------
- moviebrowser: fix display of control chars in movieinfo

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

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2019-12-25 23:07:04 +01:00
parent 1f66f75ed0
commit b7f6e8afb1
2 changed files with 12 additions and 1 deletions

View File

@@ -3913,6 +3913,16 @@ bool CMovieBrowser::isFiltered(MI_MOVIE_INFO& movie_info)
return (result);
}
std::string CMovieBrowser::replaceInGUI(std::string text)
{
std::string t(text);
t = str_replace("\u000a", ", ", t);
t = str_replace("\u000d", ", ", t);
return t;
}
bool CMovieBrowser::getMovieInfoItem(MI_MOVIE_INFO& movie_info, MB_INFO_ITEM item, std::string* item_string)
{
#define MAX_STR_TMP 100
@@ -3947,7 +3957,7 @@ bool CMovieBrowser::getMovieInfoItem(MI_MOVIE_INFO& movie_info, MB_INFO_ITEM ite
*item_string = movie_info.serieName;
break;
case MB_INFO_INFO1: // = 4,
*item_string = movie_info.epgInfo1;
*item_string = replaceInGUI(movie_info.epgInfo1);
break;
case MB_INFO_MAJOR_GENRE: // = 5,
snprintf(str_tmp, sizeof(str_tmp),"%2d",movie_info.genreMajor);