* minor: Remove mono compiler warning

0.6.0-stable
Justin Clarke Casey 2008-11-01 22:07:55 +00:00
parent 9366a234cf
commit e3a1ccf0b2
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat
{
if (!requestData.ContainsKey("password"))
throw new Exception("Invalid request");
if (requestData["password"] != password)
if ((string)requestData["password"] != password)
throw new Exception("Invalid request");
}