diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2018-02-25 13:26:17 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2018-02-25 13:26:17 +0100 |
commit | 6600478675add5e26e8af97c8de8b972a0cc1230 (patch) | |
tree | b4b639951b5b628fa857e650b6976c33ca700a26 /menu.c | |
parent | bbbc36a1e63b39db9fb985e9b5c5a4a24ea2f4a2 (diff) | |
download | vdr-6600478675add5e26e8af97c8de8b972a0cc1230.tar.gz vdr-6600478675add5e26e8af97c8de8b972a0cc1230.tar.bz2 |
Moved handling remote timers into cSVDRPClientHandler::ProcessConnections()
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 4.61 2018/02/13 09:25:43 kls Exp $ + * $Id: menu.c 4.62 2018/02/25 13:07:09 kls Exp $ */ #include "menu.h" @@ -4184,7 +4184,7 @@ eOSState cMenuSetupMisc::ProcessKey(eKeys Key) else { LOCK_TIMERS_WRITE; Timers->SetExplicitModify(); - if (Timers->DelRemoteTimers()) + if (Timers->StoreRemoteTimers(NULL, NULL)) Timers->SetModified(); } } |