mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 03:06:05 +08:00
Minor change.
This commit is contained in:
@@ -113,7 +113,7 @@ namespace OpenSim.Server.Handlers.Grid
|
||||
byte[] Register(Dictionary<string, string> request)
|
||||
{
|
||||
UUID scopeID = UUID.Zero;
|
||||
if (request["SCOPEID"] != null)
|
||||
if (request.ContainsKey("SCOPEID"))
|
||||
UUID.TryParse(request["SCOPEID"], out scopeID);
|
||||
else
|
||||
m_log.WarnFormat("[GRID HANDLER]: no scopeID in request to register region");
|
||||
|
||||
Reference in New Issue
Block a user