From f6ffa4d19107582b9fab84049b75305ebd868599 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Mon, 17 Aug 2020 12:37:21 +0100 Subject: [PATCH] mantis 8748: fix --- OpenSim/Region/CoreModules/World/Land/LandObject.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Region/CoreModules/World/Land/LandObject.cs b/OpenSim/Region/CoreModules/World/Land/LandObject.cs index 4c97e7be60..8e72ac2a3c 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandObject.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandObject.cs @@ -1914,13 +1914,13 @@ namespace OpenSim.Region.CoreModules.World.Land public void SetMusicUrl(string url) { if (String.IsNullOrWhiteSpace(url)) - LandData.MediaURL = String.Empty; + LandData.MusicURL = String.Empty; else { try { Uri dummmy = new Uri(url, UriKind.Absolute); - LandData.MediaURL = url; + LandData.MusicURL = url; } catch (Exception e) {