From cffc3b7e596494da2b4f96c555ee38bf2925f7f9 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Mon, 29 Jun 2015 16:36:19 -0400 Subject: [PATCH] Add semi-colon to Shoutcast URLs to make them work with our player --- airtime_mvc/application/models/StreamSetting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/models/StreamSetting.php b/airtime_mvc/application/models/StreamSetting.php index 52deb535c..be2d63065 100644 --- a/airtime_mvc/application/models/StreamSetting.php +++ b/airtime_mvc/application/models/StreamSetting.php @@ -76,7 +76,7 @@ class Application_Model_StreamSetting $port = $streamData[$prefix."port"]; $mount = $streamData[$prefix."mount"]; if ($streamData[$prefix."output"] == "shoutcast") { - $url = "http://$host:$port/"; + $url = "http://$host:$port/;"; //The semi-colon is important to make Shoutcast stream URLs play instead turn into a page. } else { //Icecast $url = "http://$host:$port/$mount"; }