diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 62206e9..5374fa5 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -9104,8 +9104,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
9104 | return true; | 9104 | return true; |
9105 | } | 9105 | } |
9106 | #endregion | 9106 | #endregion |
9107 | string mapName = Util.UTF8.GetString(map.NameData.Name, 0, | 9107 | string mapName = (map.NameData.Name.Length == 0) ? m_scene.RegionInfo.RegionName : |
9108 | map.NameData.Name.Length - 1); | 9108 | Util.UTF8.GetString(map.NameData.Name, 0, map.NameData.Name.Length - 1); |
9109 | RequestMapName handlerMapNameRequest = OnMapNameRequest; | 9109 | RequestMapName handlerMapNameRequest = OnMapNameRequest; |
9110 | if (handlerMapNameRequest != null) | 9110 | if (handlerMapNameRequest != null) |
9111 | { | 9111 | { |