fix creators user cache

This commit is contained in:
UbitUmarov
2021-01-07 21:52:41 +00:00
parent 6bcba59439
commit 70e00a00ec
2 changed files with 10 additions and 4 deletions

View File

@@ -145,6 +145,11 @@ namespace OpenSim.Framework
get { return Flags == OSHTTPURIFlags.None ? "" : URI + "/";}
}
public string HostAndPort
{
get { return (Flags == OSHTTPURIFlags.None) ? "" : Host + ":" + Port.ToString(); }
}
public int CompareTo(OSHTTPURI other)
{
if (Port == other.Port && ((Flags & other.Flags) & OSHTTPURIFlags.ValidHost) != 0)