diff options
author | Timo Eskola <timo@tolleri.net> | 2018-09-02 16:33:05 +0300 |
---|---|---|
committer | Timo Eskola <timo@tolleri.net> | 2018-09-02 16:33:05 +0300 |
commit | ab30cd141dc537ca00a8366c85d200d08db3a554 (patch) | |
tree | 8d411569c62f40faa220a05274668a89b0a379bd | |
parent | 66e1b3ddb9f73a918ce1b8c9f3f5e8a39ba2d8d7 (diff) | |
download | vdr-plugin-duplicates-ab30cd141dc537ca00a8366c85d200d08db3a554.tar.gz vdr-plugin-duplicates-ab30cd141dc537ca00a8366c85d200d08db3a554.tar.bz2 |
Avoid unlocking recordings twice.
-rw-r--r-- | menu.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -351,11 +351,12 @@ eOSState cMenuDuplicates::Delete(void) { Del(Current()); SetHelpKeys(); Display(); - } else + } else { Skins.Message(mtError, trVDR("Error while deleting recording!")); #if VDRVERSNUM >= 20301 - recordingsStateKey.Remove(); + recordingsStateKey.Remove(); #endif + } } } return osContinue; |