From faa53b049f30545357a0e0ee3a90e71ca0816a17 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Sat, 4 Oct 2025 21:42:09 +0200 Subject: [PATCH] Fix downloading created backups while in dev env Use absolute url to ensure that the backup file gets requested from the servers domain --- src/features/backup/screens/Backup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/backup/screens/Backup.tsx b/src/features/backup/screens/Backup.tsx index a135ad87..4193c78b 100644 --- a/src/features/backup/screens/Backup.tsx +++ b/src/features/backup/screens/Backup.tsx @@ -135,7 +135,7 @@ export function Backup() { } const link = document.createElement('a'); - link.href = backupFileUrl; + link.href = requestManager.getValidUrlFor(backupFileUrl, ''); link.download = ''; document.body.appendChild(link); link.click();