[Media] Add https to allowed audio urls

This commit is contained in:
Router Gray
2020-06-12 21:59:46 -05:00
parent 5610eaa839
commit 2528f71bbf

View File

@@ -1805,7 +1805,8 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use
// If there is a new music URL and it's valid, play it.
if (music_url.size() > 12)
{
if (music_url.substr(0,7) == "http://")
if (music_url.substr(0,7) == "http://"
|| music_url.substr(0, 8) == "https://")
{
optionally_start_music(parcel);
}