Fix Skipping

This commit is contained in:
Shadowghost
2026-02-21 22:56:53 +01:00
parent 97340edf02
commit d156e04c9a

View File

@@ -32,7 +32,7 @@ public sealed class ImageDataArrayConverter : JsonConverter<IReadOnlyList<ImageD
}
// Not an array (string error, null, object, etc.) — skip and return empty.
reader.Skip();
reader.TrySkip();
return [];
}