return false/true

master
Christopher 2020-07-01 18:11:39 +02:00
parent c9e178b8bb
commit 060761b987
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ namespace OpenSim.Modules.EMail
public bool isUUID(string thing)
{
UUID test;
return UUID.TryParse(thing, out test) ? 1 : 0;
return UUID.TryParse(thing, out test) ? true : false;
}
}
}