Change shoutcast streams list to use https.
This commit is contained in:
parent
9a563eb800
commit
a8fa8487ea
|
|
@ -243,7 +243,7 @@
|
||||||
if (strlen($row['stream_location']) > 0) {
|
if (strlen($row['stream_location']) > 0) {
|
||||||
$location_parts = explode('://',$row['stream_location']);
|
$location_parts = explode('://',$row['stream_location']);
|
||||||
if ($location_parts[0] == "shout") {
|
if ($location_parts[0] == "shout") {
|
||||||
echo "<audio src='http://".$location_parts[1]."' controls='controls' />\n";
|
echo "<audio src='https://".$location_parts[1]."' controls='controls' />\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue