summaryrefslogtreecommitdiff
path: root/vdr-smarttvweb
diff options
context:
space:
mode:
authorthlo <t.lohmar@gmx.de>2012-12-29 00:02:32 +0100
committerthlo <t.lohmar@gmx.de>2012-12-29 00:02:32 +0100
commitc542bd58a0821cfae77e07abea50c4c2b304a3d6 (patch)
tree484653c6153d00a32e9419dce1515a85f80639d9 /vdr-smarttvweb
parent00ebc89c5ed4abb7234a2ac40604839fb6399307 (diff)
downloadvdr-plugin-smarttvweb-c542bd58a0821cfae77e07abea50c4c2b304a3d6.tar.gz
vdr-plugin-smarttvweb-c542bd58a0821cfae77e07abea50c4c2b304a3d6.tar.bz2
use public method cRecording::Start()
Diffstat (limited to 'vdr-smarttvweb')
-rw-r--r--vdr-smarttvweb/httpresource.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vdr-smarttvweb/httpresource.c b/vdr-smarttvweb/httpresource.c
index 7755ff0..175c258 100644
--- a/vdr-smarttvweb/httpresource.c
+++ b/vdr-smarttvweb/httpresource.c
@@ -1574,7 +1574,7 @@ int cHttpResource::sendRecordingsXml(struct stat *statbuf) {
*mResponseMessage += hdr;
- /*
+
if (writeXmlItem("HAS - Big Bugs Bunny", "http://192.168.1.122/sm/BBB-DASH/HAS_BigBuckTS.xml|COMPONENT=HAS", "NA", "Big Bucks Bunny - HAS",
"-", 0, 0) == ERROR)
return ERROR;
@@ -1582,7 +1582,7 @@ int cHttpResource::sendRecordingsXml(struct stat *statbuf) {
if (writeXmlItem("HLS - Big Bugs Bunny", "http://192.168.1.122/sm/BBB-DASH/HLS_BigBuckTS.m3u8|COMPONENT=HLS", "NA", "Big Bucks Bunny - HLS",
"-", 0, 0) == ERROR)
return ERROR;
-*/
+
//--------------------
cRecordings* recordings = &Recordings;
@@ -1668,7 +1668,7 @@ int cHttpResource::sendRecordingsXml(struct stat *statbuf) {
}
if (writeXmlItem(cUrlEncode::doXmlSaveEncode(recording->Name()), link, "NA", desc, "-",
- recording->start, rec_dur) == ERROR)
+ recording->Start(), rec_dur) == ERROR)
return ERROR;
}