From 82db596da9c4c763325a2f5aec018f954d7ed998 Mon Sep 17 00:00:00 2001 From: Swifter Date: Wed, 25 Feb 2026 01:29:01 -0500 Subject: [PATCH] fix FromJSON string overload not starting reader --- CustomJSONData/CustomBeatmap/CustomData.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/CustomJSONData/CustomBeatmap/CustomData.cs b/CustomJSONData/CustomBeatmap/CustomData.cs index a1e95fc..ec16092 100644 --- a/CustomJSONData/CustomBeatmap/CustomData.cs +++ b/CustomJSONData/CustomBeatmap/CustomData.cs @@ -27,6 +27,7 @@ public CustomData(IEnumerable> collection) public static CustomData FromJSON(string jsonString) { using JsonTextReader reader = new(new StringReader(jsonString)); + reader.Read(); return FromJSON(reader); }