1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00

Fixed: Versioned Backups Not Recognized by BackupFileRegex

This commit is contained in:
Qstick 2019-12-08 00:31:00 -05:00
parent eaf7999d70
commit 7a95fb55bd

View File

@ -39,7 +39,7 @@ public class BackupService : IBackupService, IExecute<BackupCommand>
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,