CC-3238: When ICEcast is not on local host, Jplayer is not playing anything

-fixed with workaround to show the user what ip they're listening on.
This commit is contained in:
Martin Konecny 2012-01-11 16:27:14 -05:00
parent 6e48d6eafc
commit 4f546a1bc3
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ $(document).ready(function(){
if ($type == "ogg")
$type = "oga";
$label = $streamData["${id}_description"]." (".$streamData["${id}_bitrate"]." Kbit/s)";
$label = "(".$streamData["${id}_host"].") ".$streamData["${id}_description"]." - ".$streamData["${id}_bitrate"]." Kbit/s";
echo sprintf("<option class='stream' value='%s' data-url='%s' data-type='%s' server-type='%s'>%s</option>", $id, $url, $type, $serverType, $label);
}
?>