diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2018-02-25 13:28:19 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2018-02-25 13:28:19 +0100 |
commit | bf497f4aae5f78076a24ed4d9c0a79c2f824d63b (patch) | |
tree | 37896690a0d883894610430b3328d51d150109c4 /menu.c | |
parent | 6600478675add5e26e8af97c8de8b972a0cc1230 (diff) | |
download | vdr-bf497f4aae5f78076a24ed4d9c0a79c2f824d63b.tar.gz vdr-bf497f4aae5f78076a24ed4d9c0a79c2f824d63b.tar.bz2 |
Fixed storing timer id in .timer for instant recordings
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.62 2018/02/25 13:07:09 kls Exp $ + * $Id: menu.c 4.63 2018/02/25 13:28:19 kls Exp $ */ #include "menu.h" @@ -5235,7 +5235,7 @@ cRecordControl::cRecordControl(cDevice *Device, cTimers *Timers, cTimer *Timer, SchedulesStateKey.Remove(); LOCK_RECORDINGS_WRITE; Recordings->AddByName(fileName); - SetRecordingTimerId(fileName, cString::sprintf("%d@%s", Timer->Id(), Setup.SVDRPHostName)); + SetRecordingTimerId(fileName, cString::sprintf("%d@%s", timer->Id(), Setup.SVDRPHostName)); return; } else |