Fix a null ref that will cause an exception if a grid region doesnt' specify a URI.
parent
d34599b1a5
commit
39e052982b
|
@ -141,6 +141,12 @@ namespace OpenSim.Services.Interfaces
|
|||
}
|
||||
}
|
||||
set {
|
||||
if ( value == null)
|
||||
{
|
||||
m_serverURI = String.Empty;
|
||||
return;
|
||||
}
|
||||
|
||||
if ( value.EndsWith("/") ) {
|
||||
m_serverURI = value;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue