diff options
-rw-r--r-- | CONTRIBUTORS | 3 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | server/connectionVTP.c | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 064b8b1..4bafbbe 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -123,3 +123,6 @@ Artem Makhutov Alwin Esch for adding XBMC support by extending VTP capabilities + +BBlack + for reporting that updating recordings list on CmdPLAY is a bad idea @@ -1,6 +1,7 @@ VDR Plugin 'streamdev' Revision History --------------------------------------- +- don't update recordings list on CmdPLAY (reported by BBlack) - cleaned up common.h / common.c - dropped cStreamdevMenuSetupPage - report charset in HTTP replies (suggested by Rolf Ahrenberg) 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); |