fix file output

This commit is contained in:
Ayan Poddar 2025-06-24 12:02:27 +05:30
parent bc409788ce
commit c79d67e775

2
App.cs
View File

@ -42,6 +42,6 @@ internal class App
jsonReader[item.Name] = value; jsonReader[item.Name] = value;
} }
await File.WriteAllTextAsync(file, jsonReader.ToString()); await File.WriteAllTextAsync(file, content.ToString());
} }
} }