diff options
author | thlo <t.lohmar@gmx.de> | 2013-02-02 14:26:32 +0100 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-02-02 14:26:32 +0100 |
commit | 3672b7e1326c06c886e547903a0f33e2d7e817ca (patch) | |
tree | 6de1ae326561c4eaa428dc765a9361c290feed64 | |
parent | f4c51fd409644bb8bbf1e194e2ab2abd317e608f (diff) | |
download | vdr-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-x | vdr-smarttvweb/httpresource.c | 3 |
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 |