1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-29 18:15:37 -04:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Mark McDowall
4b85fab05b Fixed: Downloading backups when path contains a trailing slash
(cherry picked from commit 31c7647eacb3c3a50e55550880287e00302a9881)
2026-03-29 19:26:19 +02:00

View File

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