From e5a8f14a9abaf17e442c9ea2e32c3e6b9680b19f Mon Sep 17 00:00:00 2001 From: drigato Date: Wed, 20 May 2015 07:05:26 -0400 Subject: [PATCH] Commented out request to tunein when station is offline --- airtime_mvc/application/controllers/ScheduleController.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/controllers/ScheduleController.php b/airtime_mvc/application/controllers/ScheduleController.php index 0df1c389c..51b86c124 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -301,9 +301,10 @@ class ScheduleController extends Zend_Controller_Action // If there is no current track playing update TuneIn so it doesn't // display outdated metadata - if (is_null($range["current"]) && Application_Model_Preference::getTuneinEnabled()) { + //TODO: find a better solution for this so we don't spam the station on TuneIn + /*if (is_null($range["current"]) && Application_Model_Preference::getTuneinEnabled()) { Application_Common_TuneIn::updateOfflineMetadata(); - } + }*/ $show = Application_Model_Show::getCurrentShow();