summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY.h7
-rw-r--r--update.c3
2 files changed, 6 insertions, 4 deletions
diff --git a/HISTORY.h b/HISTORY.h
index ad37626..ab021e1 100644
--- a/HISTORY.h
+++ b/HISTORY.h
@@ -5,8 +5,8 @@
*
*/
-#define _VERSION "1.1.112"
-#define VERSION_DATE "13.03.2020"
+#define _VERSION "1.1.113"
+#define VERSION_DATE "23.03.2020"
#define DB_API 7
@@ -19,6 +19,9 @@
/*
* ------------------------------------
+2020-03-23: version 1.1.113 (horchi)
+ - change: Minor change of log message
+
2020-03-13: version 1.1.112 (horchi)
- bugfix: Fixed timer deactivation by webif again
diff --git a/update.c b/update.c
index c673145..ee2d5d0 100644
--- a/update.c
+++ b/update.c
@@ -1635,7 +1635,7 @@ int cUpdate::refreshEpg(const char* forChannelId, int maxTries)
if (channels && schedules && (channel = channels->GetByChannelID(channelId, true)))
s = (cSchedule*)schedules->GetSchedule(channel, true);
else if (channels && schedules)
- tell(0, "Error: Channel with ID '%s' don't exist on this VDR", mapDb->getStrValue("ChannelId"));
+ tell(mainActPending ? 0 : 4, "Error: Channel with ID '%s' don't exist on this VDR", mapDb->getStrValue("ChannelId"));
if (!schedules || !channels || !timers)
{
@@ -2150,4 +2150,3 @@ int cUpdate::cleanupPictures()
return success;
}
-