From 794b0f99083af55f46e76f098854685835f3d015 Mon Sep 17 00:00:00 2001 From: MikeMaximus Date: Wed, 1 Aug 2018 10:02:46 -0600 Subject: [PATCH] Stop useless manifest conflict checks --- GBM/Managers/mgrBackup.vb | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/GBM/Managers/mgrBackup.vb b/GBM/Managers/mgrBackup.vb index 7baac77..1163fcf 100644 --- a/GBM/Managers/mgrBackup.vb +++ b/GBM/Managers/mgrBackup.vb @@ -143,10 +143,13 @@ Public Class mgrBackup End If End If - If mgrRestore.CheckManifest(oGame.ID) Then - If mgrCommon.ShowMessage(mgrBackup_ConfirmManifestConflict, oGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then - RaiseEvent UpdateLog(mgrBackup_ErrorManifestConflict, False, ToolTipIcon.Error, True) - Return False + 'A manifest check is only required when "Save Multiple Backups" is disabled + If Not oGame.AppendTimeStamp Then + If mgrRestore.CheckManifest(oGame.ID) Then + If mgrCommon.ShowMessage(mgrBackup_ConfirmManifestConflict, oGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then + RaiseEvent UpdateLog(mgrBackup_ErrorManifestConflict, False, ToolTipIcon.Error, True) + Return False + End If End If End If