1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-16 21:15:33 -04:00

Compare commits

..

3 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
Auggie
8ae71b54a7 chore: Fix innosetup download URI
Co-authored-by: RobinDadswell
<19610103+RobinDadswell@users.noreply.github.com>
2026-03-25 20:12:37 +00:00
RobinDadswell
079e2136ee version bump to 6.1.2 2026-03-25 14:48:38 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ variables:
testsFolder: './_tests' testsFolder: './_tests'
yarnCacheFolder: $(Pipeline.Workspace)/.yarn yarnCacheFolder: $(Pipeline.Workspace)/.yarn
nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages
majorVersion: '6.1.1' majorVersion: '6.1.2'
minorVersion: $[counter('minorVersion', 2000)] minorVersion: $[counter('minorVersion', 2000)]
radarrVersion: '$(majorVersion).$(minorVersion)' radarrVersion: '$(majorVersion).$(minorVersion)'
buildName: '$(Build.SourceBranchName).$(radarrVersion)' buildName: '$(Build.SourceBranchName).$(radarrVersion)'

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)
{ {