Prevent NullRef when deleting missing backups

pull/1672/head
Bogdan 12 months ago
parent 51e33740b0
commit 0ff0fe2e68

@ -20,7 +20,7 @@ namespace Prowlarr.Api.V1.System.Backup
private readonly IAppFolderInfo _appFolderInfo;
private readonly IDiskProvider _diskProvider;
private static readonly List<string> ValidExtensions = new List<string> { ".zip", ".db", ".xml" };
private static readonly List<string> ValidExtensions = new () { ".zip", ".db", ".xml" };
public BackupController(IBackupService backupService,
IAppFolderInfo appFolderInfo,
@ -54,6 +54,12 @@ namespace Prowlarr.Api.V1.System.Backup
public void DeleteBackup(int id)
{
var backup = GetBackup(id);
if (backup == null)
{
throw new NotFoundException();
}
var path = GetBackupPath(backup);
if (!_diskProvider.FileExists(path))

Loading…
Cancel
Save