mirror of https://github.com/Radarr/Radarr
Fixed: Versioned Backups Not Recognized by BackupFileRegex
This commit is contained in:
parent
eaf7999d70
commit
7a95fb55bd
|
@ -39,7 +39,7 @@ namespace NzbDrone.Core.Backup
|
|||
|
||||
private string _backupTempFolder;
|
||||
|
||||
public static readonly Regex BackupFileRegex = new Regex(@"(nzbdrone|radarr)_backup_[._0-9]+\.zip", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
public static readonly Regex BackupFileRegex = new Regex(@"(nzbdrone|radarr)_backup_v?[._0-9]+\.zip", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
|
||||
public BackupService(IMainDatabase maindDb,
|
||||
IMakeDatabaseBackup makeDatabaseBackup,
|
||||
|
|
Loading…
Reference in New Issue