1
0
mirror of synced 2025-01-31 12:23:52 +01:00

Fix illegal character check for exporting in iarchive files

This commit is contained in:
KillzXGaming 2019-07-14 18:17:45 -04:00
parent ddcf80a6d7
commit df1ec92e92
5 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -110,7 +110,7 @@ namespace Switch_Toolbox.Library
public virtual void Export()
{
string fileName = Path.GetFileName(FileName.RemoveIllegaleFileNameCharacters());
string fileName = Path.GetFileName(FileName.RemoveIllegaleFolderNameCharacters());
SaveFileDialog sfd = new SaveFileDialog();
sfd.FileName = fileName;