pgsql: still uint cast issue

This commit is contained in:
UbitUmarov
2024-05-15 23:05:34 +01:00
parent 464409bbc2
commit 971778019a

View File

@@ -182,6 +182,10 @@ namespace OpenSim.Data.PGSQL
{
return value;
}
if (valueType == typeof(uint))
{
return (int)value;
}
return value;
}