diff options
author | louis <louis.braun@gmx.de> | 2014-05-10 12:57:31 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-05-10 12:57:31 +0200 |
commit | ea862b36b21029890a1a137f06ba3d828c36d372 (patch) | |
tree | ee13cd9ab32a798532be1c0de40f832eb6a289e4 | |
parent | f1587ee56e7fc37209c6739c00da83ab75f7b175 (diff) | |
download | vdr-plugin-scraper2vdr-ea862b36b21029890a1a137f06ba3d828c36d372.tar.gz vdr-plugin-scraper2vdr-ea862b36b21029890a1a137f06ba3d828c36d372.tar.bz2 |
fixed bug in setup menu
-rw-r--r-- | setup.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -50,19 +50,19 @@ eOSState cScraper2VdrSetup::ProcessKey(eKeys Key) { tmpConfig.mysqlDBUser = user; tmpConfig.mysqlDBPass = password; Store(); - if (Current() == 6) { + if (Current() == 7) { Skins.Message(mtInfo, tr("Updating Scraper EPG Information from Database")); update->ForceUpdate(); - } else if (Current() == 7) { + } else if (Current() == 8) { Skins.Message(mtInfo, tr("Updating Scraper Recordings Information from Database")); update->ForceRecordingUpdate(); - } else if (Current() == 8) { + } else if (Current() == 9) { Skins.Message(mtInfo, tr("Scanning for new recordings in video directory")); update->ForceVideoDirUpdate(); - } else if (Current() == 9) { + } else if (Current() == 10 ) { Skins.Message(mtInfo, tr("Scanning for new or updated scrapinfo files")); update->ForceScrapInfoUpdate(); - } else if (Current() == 10) { + } else if (Current() == 11) { Skins.Message(mtInfo, tr("Cleaning up Recordings in Database")); update->TriggerCleanRecordingsDB(); } |