Rough code. Not tested.

This commit is contained in:
HeshamTB 2018-12-09 16:45:22 +03:00
parent c2f9d4a782
commit f1831c78a8

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)