1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-25 17:35:07 -04:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Mark McDowall
31c7647eac Fixed: Downloading backups when path contains a trailing slash 2026-03-25 07:38:36 -07:00

View File

@@ -15,7 +15,7 @@ namespace Sonarr.Http.Frontend.Mappers
_backupService = backupService;
}
protected override string FolderPath => _backupService.GetBackupFolder();
protected override string FolderPath => _backupService.GetBackupFolder().TrimEnd(Path.DirectorySeparatorChar);
protected override string MapPath(string resourceUrl)
{