Skip to content

Commit 218eded

Browse files
Merge pull request #47 from SG-fabian/fix_download_bug
fix/download destination disk
2 parents b6ef5a0 + df2222e commit 218eded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Controllers/DownloadBackupController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ public function __invoke(string $timestamp, BackupRepository $repo): StreamedRes
2525

2626
$backup->getMetadata()->addDownload(auth()->user());
2727

28-
return Storage::disk(config('backup.backup.disk'))->download($backup->path);
28+
return Storage::disk(config('backup.destination.disk'))->download($backup->path);
2929
}
3030
}

0 commit comments

Comments
 (0)