Comment out file write operation for game data

Comment out the line that writes JSON data to a file.
This commit is contained in:
kqnori
2026-06-28 19:54:02 +02:00
committed by GitHub
parent ad86503b5c
commit bb9ff5c05d
+1 -1
View File
@@ -180,7 +180,7 @@ string get;
{ {
get = client.DownloadString($"https://store.steampowered.com/api/appdetails?appids={gameid}"); get = client.DownloadString($"https://store.steampowered.com/api/appdetails?appids={gameid}");
} }
File.WriteAllText($"{userProfilePath}/{gameid}.json", get); //File.WriteAllText($"{userProfilePath}/{gameid}.json", get);
dynamic json = JObject.Parse(get); dynamic json = JObject.Parse(get);