diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | menu.c | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -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 @@ -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; |