Fix downloading created backups while in dev env

Use absolute url to ensure that the backup file gets requested from the servers domain
This commit is contained in:
schroda
2025-10-04 21:42:09 +02:00
parent bc2d7cadc4
commit faa53b049f

View File

@@ -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();