From bb9ff5c05d752740efbdad6bf2bc584a0baf9a1c Mon Sep 17 00:00:00 2001 From: kqnori <96951674+kqnori@users.noreply.github.com> Date: Sun, 28 Jun 2026 19:54:02 +0200 Subject: [PATCH] Comment out file write operation for game data Comment out the line that writes JSON data to a file. --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 9752760..0e452f4 100644 --- a/Program.cs +++ b/Program.cs @@ -180,7 +180,7 @@ string get; { 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);