Browse Source

Fixed minor updater bug

piracy-check
Anairkoen Schno 5 years ago
parent
commit
0e160db2a5
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      IPA.Loader/Updating/Backup/BackupUnit.cs

+ 2
- 1
IPA.Loader/Updating/Backup/BackupUnit.cs View File

@ -63,7 +63,8 @@ namespace IPA.Updating.Backup
internal void Delete()
{
_BackupPath.Delete(true);
if (_BackupPath.Exists)
_BackupPath.Delete(true);
}
/// <summary>


Loading…
Cancel
Save