diff options
Diffstat (limited to 'vdr-vdrmanager')
-rw-r--r-- | vdr-vdrmanager/helpers.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/vdr-vdrmanager/helpers.cpp b/vdr-vdrmanager/helpers.cpp index 70342c7..2d1aec2 100644 --- a/vdr-vdrmanager/helpers.cpp +++ b/vdr-vdrmanager/helpers.cpp @@ -576,6 +576,10 @@ string cHelpers::ToText(cTimer * timer) { result += ":"; result += MapSpecialChars(timer->Channel()->GetChannelID().ToString()); + result += ":"; + + result += timer->WeekDays(); + result += "\r\n"; return result; @@ -817,7 +821,7 @@ string cHelpers::UnMapSpecialChars(string text) { } /** - * base on vdr-restfulapi's RecordingLengthInSeconds + * based on vdr-restfulapi's RecordingLengthInSeconds */ int cHelpers::RecordingLengthInSeconds(cRecording* recording) { |