Correct Generated JSON for UPlay Games Fixes #27

- Correctts the invalid comma in the generated JSON for games that utilize the UPlay unlocker.
This commit is contained in:
Frog
2026-06-12 00:43:03 -07:00
parent 30bd1035b2
commit eb075a32db
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -68,10 +68,10 @@ internal static class UplayR1
false); false);
} }
writer.WriteLine(" ],"); writer.WriteLine(" ]");
} }
else else
writer.WriteLine(" \"blacklist\": [],"); writer.WriteLine(" \"blacklist\": []");
writer.WriteLine("}"); writer.WriteLine("}");
} }
+2 -2
View File
@@ -72,10 +72,10 @@ internal static class UplayR2
false); false);
} }
writer.WriteLine(" ],"); writer.WriteLine(" ]");
} }
else else
writer.WriteLine(" \"blacklist\": [],"); writer.WriteLine(" \"blacklist\": []");
writer.WriteLine("}"); writer.WriteLine("}");
} }