mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 17:31:11 +02:00
src/neutrino.cpp: dont zap on record announce if same channel
Origin commit data
------------------
Commit: 38479e11bf
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-10-29 (Mon, 29 Oct 2012)
This commit is contained in:
@@ -2678,11 +2678,11 @@ _repeat:
|
||||
}
|
||||
}
|
||||
|
||||
if( g_settings.recording_zap_on_announce && (mode != mode_standby) ) {
|
||||
if( g_settings.recording_zap_on_announce && (mode != mode_standby) && (eventinfo->channel_id != CZapit::getInstance()->GetCurrentChannelID())) {
|
||||
//TODO check transponder ?
|
||||
CRecordManager::getInstance()->StopAutoRecord();
|
||||
if(!CRecordManager::getInstance()->RecordingStatus()) {
|
||||
dvbsub_stop(); //FIXME if same channel ?
|
||||
dvbsub_stop();
|
||||
t_channel_id channel_id=eventinfo->channel_id;
|
||||
g_Zapit->zapTo_serviceID_NOWAIT(channel_id);
|
||||
}
|
||||
|
Reference in New Issue
Block a user