From c79d67e7750998419422c206996f7a6de7921062 Mon Sep 17 00:00:00 2001 From: Ayan Poddar Date: Tue, 24 Jun 2025 12:02:27 +0530 Subject: [PATCH] fix file output --- App.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App.cs b/App.cs index 5ca94e4..5629af1 100644 --- a/App.cs +++ b/App.cs @@ -42,6 +42,6 @@ internal class App jsonReader[item.Name] = value; } - await File.WriteAllTextAsync(file, jsonReader.ToString()); + await File.WriteAllTextAsync(file, content.ToString()); } } \ No newline at end of file