Save Proper JSON file for readablity #34

Merged
Hesham merged 3 commits from indent-json into master 2018-12-10 07:31:58 +01:00
Showing only changes of commit f1831c78a8 - Show all commits

View File

@ -74,7 +74,9 @@ namespace OWTrack
{
try
{
File.WriteAllText(Paths.SAVES, JsonConvert.SerializeObject(tracker));
JsonConvert json = new JsonConvert();//Not tested
json.Formatting = Formatting.Indented;
File.WriteAllText(Paths.SAVES, json.SerializeObject(tracker));//check if (Indented) Parameter exists
return true;
}
catch (Exception)