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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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";