summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY3
-rw-r--r--menu.c3
2 files changed, 5 insertions, 1 deletions
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;