From b06cb7a7926d9d30270c0cecc6a9e20455f0f569 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Mon, 1 Jun 2015 14:18:43 +0300 Subject: [PATCH] nhttpd/tuxboxapi/neutrinoapi.cpp: remove setServiceChanged calls after zap Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/9a45735eba6dbec628048fe5e0bcf3dad3624f18 Author: [CST] Focus Date: 2015-06-01 (Mon, 01 Jun 2015) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/nhttpd/tuxboxapi/neutrinoapi.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/nhttpd/tuxboxapi/neutrinoapi.cpp b/src/nhttpd/tuxboxapi/neutrinoapi.cpp index 93671d5b8..8c9812a15 100644 --- a/src/nhttpd/tuxboxapi/neutrinoapi.cpp +++ b/src/nhttpd/tuxboxapi/neutrinoapi.cpp @@ -189,8 +189,7 @@ void CNeutrinoAPI::ZapToChannelId(t_channel_id channel_id) } CMoviePlayerGui::getInstance().stopPlayBack(); - if (Zapit->zapTo_serviceID(channel_id) != CZapitClient::ZAP_INVALID_PARAM) - Sectionsd->setServiceChanged(channel_id, false); + Zapit->zapTo_serviceID(channel_id); } //------------------------------------------------------------------------- @@ -203,8 +202,7 @@ void CNeutrinoAPI::ZapToSubService(const char * const target) &channel_id); CMoviePlayerGui::getInstance().stopPlayBack(); - if (Zapit->zapTo_subServiceID(channel_id) != CZapitClient::ZAP_INVALID_PARAM) - Sectionsd->setServiceChanged(channel_id, false); + Zapit->zapTo_subServiceID(channel_id); } //------------------------------------------------------------------------- t_channel_id CNeutrinoAPI::ChannelNameToChannelId(std::string search_channel_name)