aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-08-12 15:33:25 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-08-12 15:33:25 +0000
commit93e7d5d00cc4fa9245ffae2ba63003284f5fce0f (patch)
tree6e9464f15be34b66120c732b319928c36bb061c5 /lib
parent3bbbea324d8592319af6d978993a5f0f7e921720 (diff)
downloadenigma2-93e7d5d00cc4fa9245ffae2ba63003284f5fce0f.tar.gz
enigma2-93e7d5d00cc4fa9245ffae2ba63003284f5fce0f.zip
set tdt interval to 60min instead of 60 sec
Diffstat (limited to 'lib')
-rw-r--r--lib/dvb/dvbtime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/dvbtime.cpp b/lib/dvb/dvbtime.cpp
index 2378fcd1..6ac7579a 100644
--- a/lib/dvb/dvbtime.cpp
+++ b/lib/dvb/dvbtime.cpp
@@ -348,7 +348,7 @@ void eDVBLocalTimeHandler::updateTime( time_t tp_time, eDVBChannel *chan )
{
delete it->second.tdt;
it->second.tdt = new TDT(chan);
- it->second.tdt->startTimer(60*1000); // restart TDT for this transponder in 60min
+ it->second.tdt->startTimer(60*60*1000); // restart TDT for this transponder in 60min
}
}
}