From f12faeaa265830470f4a28d1939932ce3478c6bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Jech?= Date: Fri, 26 Dec 2025 11:37:47 +0100 Subject: [PATCH] CloudStorage: Fix missing quotes on default stats.json template --- UT4MasterServer/Controllers/Epic/CloudStorageController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UT4MasterServer/Controllers/Epic/CloudStorageController.cs b/UT4MasterServer/Controllers/Epic/CloudStorageController.cs index ab7dd969..a9534c79 100644 --- a/UT4MasterServer/Controllers/Epic/CloudStorageController.cs +++ b/UT4MasterServer/Controllers/Epic/CloudStorageController.cs @@ -76,7 +76,7 @@ public async Task GetFile(string id, string filename) playerID = account.ID; } - file = new CloudFile() { RawContent = Encoding.UTF8.GetBytes($"{{\"PlayerName\":\"{playerName}\",StatsID:\"{playerID}\",Version:0}}") }; + file = new CloudFile() { RawContent = Encoding.UTF8.GetBytes($"{{\"PlayerName\":\"{playerName}\",\"StatsID\":\"{playerID}\",\"Version\":0}}") }; } if (isStatsFile)