From 66e1b3ddb9f73a918ce1b8c9f3f5e8a39ba2d8d7 Mon Sep 17 00:00:00 2001 From: Timo Eskola Date: Sun, 2 Sep 2018 16:08:58 +0300 Subject: Added missing recordings lock release. --- HISTORY | 3 ++- menu.c | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 76b79ea..e3ab5a1 100644 --- a/HISTORY +++ b/HISTORY @@ -1,10 +1,11 @@ VDR Plugin 'duplicates' Revision History ---------------------------------------- -2018-09-01: Version 0.2.2 +2018-09-02: Version 0.2.2 - Updated kNone handling in main menu. - Improved duplicate recording copy constructor. +- Added missing recordings lock release. 2018-08-30: Version 0.2.1 diff --git a/menu.c b/menu.c index 0a5300f..0924e8d 100644 --- a/menu.c +++ b/menu.c @@ -353,6 +353,9 @@ eOSState cMenuDuplicates::Delete(void) { Display(); } else Skins.Message(mtError, trVDR("Error while deleting recording!")); +#if VDRVERSNUM >= 20301 + recordingsStateKey.Remove(); +#endif } } return osContinue; -- cgit v1.2.3