summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthlo <t.lohmar@gmx.de>2013-02-02 14:26:32 +0100
committerthlo <t.lohmar@gmx.de>2013-02-02 14:26:32 +0100
commit3672b7e1326c06c886e547903a0f33e2d7e817ca (patch)
tree6de1ae326561c4eaa428dc765a9361c290feed64
parentf4c51fd409644bb8bbf1e194e2ab2abd317e608f (diff)
downloadvdr-plugin-smarttvweb-3672b7e1326c06c886e547903a0f33e2d7e817ca.tar.gz
vdr-plugin-smarttvweb-3672b7e1326c06c886e547903a0f33e2d7e817ca.tar.bz2
do stream-to-end when time request is used while recording is on-going.
-rwxr-xr-xvdr-smarttvweb/httpresource.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/vdr-smarttvweb/httpresource.c b/vdr-smarttvweb/httpresource.c
index 3e1e21c..659ef17 100755
--- a/vdr-smarttvweb/httpresource.c
+++ b/vdr-smarttvweb/httpresource.c
@@ -2194,6 +2194,9 @@ bool cHttpResource::isTimeRequest(struct stat64 *statbuf) {
}
}
+ if (mIsRecording)
+ mStreamToEnd = true;
+
time = atof(time_str.c_str());
*(mLog->log())<< DEBUGPREFIX
<< " Found a Time Parameter: " << time