don't update recordings list on CmdPLAY (reported by BBlack)

This commit is contained in:
schmirl 2009-09-30 10:10:40 +00:00
parent 6da7cf90d9
commit ac40edfd24
3 changed files with 5 additions and 2 deletions

View File

@ -123,3 +123,6 @@ Artem Makhutov
Alwin Esch Alwin Esch
for adding XBMC support by extending VTP capabilities for adding XBMC support by extending VTP capabilities
BBlack
for reporting that updating recordings list on CmdPLAY is a bad idea

View File

@ -1,6 +1,7 @@
VDR Plugin 'streamdev' Revision History VDR Plugin 'streamdev' Revision History
--------------------------------------- ---------------------------------------
- don't update recordings list on CmdPLAY (reported by BBlack)
- cleaned up common.h / common.c - cleaned up common.h / common.c
- dropped cStreamdevMenuSetupPage - dropped cStreamdevMenuSetupPage
- report charset in HTTP replies (suggested by Rolf Ahrenberg) - report charset in HTTP replies (suggested by Rolf Ahrenberg)

View File

@ -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" #include "server/connectionVTP.h"
@ -1086,7 +1086,6 @@ bool cConnectionVTP::CmdTUNE(char *Opts)
bool cConnectionVTP::CmdPLAY(char *Opts) bool cConnectionVTP::CmdPLAY(char *Opts)
{ {
Recordings.Update(true);
if (*Opts) { if (*Opts) {
if (isnumber(Opts)) { if (isnumber(Opts)) {
cRecording *recording = Recordings.Get(strtol(Opts, NULL, 10) - 1); cRecording *recording = Recordings.Get(strtol(Opts, NULL, 10) - 1);