CustomizationStorage can be null on new profile

This commit is contained in:
CWX
2025-01-19 14:52:47 +00:00
parent 1cd6ba203d
commit 4a295d4301
+1 -2
View File
@@ -269,8 +269,7 @@ public class CustomizationController(
return customisationResultsClone!;
}
customisationResultsClone!.AddRange(profile.CustomisationUnlocks);
customisationResultsClone!.AddRange(profile.CustomisationUnlocks ?? []);
return customisationResultsClone;
}