summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2014-05-10 12:57:31 +0200
committerlouis <louis.braun@gmx.de>2014-05-10 12:57:31 +0200
commitea862b36b21029890a1a137f06ba3d828c36d372 (patch)
treeee13cd9ab32a798532be1c0de40f832eb6a289e4
parentf1587ee56e7fc37209c6739c00da83ab75f7b175 (diff)
downloadvdr-plugin-scraper2vdr-ea862b36b21029890a1a137f06ba3d828c36d372.tar.gz
vdr-plugin-scraper2vdr-ea862b36b21029890a1a137f06ba3d828c36d372.tar.bz2
fixed bug in setup menu
-rw-r--r--setup.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/setup.c b/setup.c
index 0ab826d..2995e1d 100644
--- a/setup.c
+++ b/setup.c
@@ -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();
}