This commit is contained in:
UbitUmarov
2024-05-15 23:12:08 +01:00
parent 971778019a
commit 114830aa4b

View File

@@ -184,7 +184,11 @@ namespace OpenSim.Data.PGSQL
}
if (valueType == typeof(uint))
{
return (int)value;
return (int)(uint)value;
}
if (valueType == typeof(ushort))
{
return (int)(ushort)value;
}
return value;
}