diff options
author | schmirl <schmirl> | 2009-09-30 10:10:40 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2009-09-30 10:10:40 +0000 |
commit | ac40edfd24c06536dcfcc990769934a98a496075 (patch) | |
tree | d96094c3c1f1a7bf654a647785ea56561b157068 /server | |
parent | 6da7cf90d9a4f1dc324e6957a0fe1aa612d04440 (diff) | |
download | vdr-plugin-streamdev-ac40edfd24c06536dcfcc990769934a98a496075.tar.gz vdr-plugin-streamdev-ac40edfd24c06536dcfcc990769934a98a496075.tar.bz2 |
don't update recordings list on CmdPLAY (reported by BBlack)
Diffstat (limited to 'server')
-rw-r--r-- | server/connectionVTP.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/connectionVTP.c b/server/connectionVTP.c index c177eaf..96b7832 100644 --- a/server/connectionVTP.c +++ b/server/connectionVTP.c @@ -1,5 +1,5 @@ /* - * $Id: connectionVTP.c,v 1.23 2009/07/17 06:21:24 schmirl Exp $ + * $Id: connectionVTP.c,v 1.24 2009/09/30 10:10:40 schmirl Exp $ */ #include "server/connectionVTP.h" @@ -1086,7 +1086,6 @@ bool cConnectionVTP::CmdTUNE(char *Opts) bool cConnectionVTP::CmdPLAY(char *Opts) { - Recordings.Update(true); if (*Opts) { if (isnumber(Opts)) { cRecording *recording = Recordings.Get(strtol(Opts, NULL, 10) - 1); |