mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user