diff options
author | lado <herrlado@gmail.com> | 2012-05-09 09:35:29 +0200 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2012-05-09 09:35:29 +0200 |
commit | 6ebd20d29f225163875617edcc9464060926bcb6 (patch) | |
tree | 13072d667c7bebb8ecf18adff7e32a3b616e7b23 | |
parent | 9a6c354ddc0cb15ebad08155cbf70bbcbdeb36d3 (diff) | |
download | vdr-manager-6ebd20d29f225163875617edcc9464060926bcb6.tar.gz vdr-manager-6ebd20d29f225163875617edcc9464060926bcb6.tar.bz2 |
return channe's id on switch
-rw-r--r-- | vdr-vdrmanager/helpers.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vdr-vdrmanager/helpers.cpp b/vdr-vdrmanager/helpers.cpp index 1219c01..8dd7706 100644 --- a/vdr-vdrmanager/helpers.cpp +++ b/vdr-vdrmanager/helpers.cpp @@ -187,8 +187,7 @@ string cHelpers::SetChannelIntern(const string args) { return result; } - return "START\r\nEND\r\n"; - + return "START\r\n"+channel->GetChannelID()+"\r\nEND\r\n"; } string cHelpers::GetAudioTracks(const cChannel* channel) { |