Change shoutcast streams list to use https.

This commit is contained in:
FusionPBX
2022-03-29 11:38:34 -06:00
committed by GitHub
parent 9a563eb800
commit a8fa8487ea

View File

@@ -243,7 +243,7 @@
if (strlen($row['stream_location']) > 0) {
$location_parts = explode('://',$row['stream_location']);
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";