Skip to content

Commit

Permalink
fix del file data in storage
Browse files Browse the repository at this point in the history
  • Loading branch information
VirtueSky committed Sep 19, 2023
1 parent 1d9aac4 commit 996f2b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VirtueSky/DataStorage/DataStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public void DelFileDataInStorage(string name)
{
if (File.Exists(GetDataPath(name)))
{
File.Delete(name);
File.Delete(GetDataPath(name));
}
}
}
Expand Down

0 comments on commit 996f2b0

Please sign in to comment.