diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Interfaces/IGridService.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs index 4466222..4e6a0f6 100644 --- a/OpenSim/Services/Interfaces/IGridService.cs +++ b/OpenSim/Services/Interfaces/IGridService.cs | |||
@@ -152,6 +152,12 @@ namespace OpenSim.Services.Interfaces | |||
152 | } | 152 | } |
153 | } | 153 | } |
154 | set { | 154 | set { |
155 | if ( value == null) | ||
156 | { | ||
157 | m_serverURI = String.Empty; | ||
158 | return; | ||
159 | } | ||
160 | |||
155 | if ( value.EndsWith("/") ) { | 161 | if ( value.EndsWith("/") ) { |
156 | m_serverURI = value; | 162 | m_serverURI = value; |
157 | } else { | 163 | } else { |