Hey guys, i found the solution about the SizeLimit bugs :
[JsonIgnore]
public float MaxFileSizeInBytes
{
get
{
return MaxSize * 1024 * 1000; // <<<< 1024 bit * 1000, and not * 1024 ! :)
}
}The problem was 1024 * 1024, line 88.