diff options
-rw-r--r-- | vdr-vdrmanager/helpers.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/vdr-vdrmanager/helpers.cpp b/vdr-vdrmanager/helpers.cpp index 556814d..9a5e8bb 100644 --- a/vdr-vdrmanager/helpers.cpp +++ b/vdr-vdrmanager/helpers.cpp @@ -687,7 +687,7 @@ string cHelpers::ToText(cRecording * recording) { } result += ":"; - if (info->Title()) { + if(info->Title()){ result += MapSpecialChars(info->Title()); #if APIVERSNUM >= 10705 } else if (event->Title()) { @@ -747,7 +747,10 @@ string cHelpers::ToText(cRecording * recording) { result += ":"; //Feature #1319 result += MapSpecialChars(recording->Name()); - + //Feature #1699 + result += ":"; + snprintf(buf, sizeof(buf) - 1, "%d", recording -> IsNew()); + result += buf; result += "\r\n"; return result; } |