Binary Guids are 16 chars long. Fix parser.
parent
4fee3f9548
commit
caf61ab7d8
|
@ -27,7 +27,7 @@ namespace OpenSim.Data
|
||||||
{
|
{
|
||||||
if (((byte[])id).Length == 0)
|
if (((byte[])id).Length == 0)
|
||||||
return UUID.Zero;
|
return UUID.Zero;
|
||||||
else if (((byte[])id).Length == 36)
|
else if (((byte[])id).Length == 16)
|
||||||
return new UUID((byte[])id, 0);
|
return new UUID((byte[])id, 0);
|
||||||
}
|
}
|
||||||
else if (id.GetType() == typeof(string))
|
else if (id.GetType() == typeof(string))
|
||||||
|
|
Loading…
Reference in New Issue