Skip to content

Commit

Permalink
Adding FileAcces.Write to fix persistant data path append issue (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelGHSeg authored Feb 8, 2024
1 parent be2d237 commit 58d792d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public void OpenOrCreate(string file, out bool newFile)

if (_fs == null)
{
_fs = _file.Open(FileMode.Append);
_fs = _file.Open(FileMode.Append, FileAccess.Write);
}
_file.Refresh();
}
Expand Down

0 comments on commit 58d792d

Please # to comment.