1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Fixes for typo

This commit is contained in:
David Bomba 2021-05-14 19:50:33 +10:00
parent c71409910a
commit 1bfa0f709e

View File

@ -108,7 +108,7 @@ class GenerateDeliveryNote
/* Copy from remote disk to local when using cloud file storage. */ /* Copy from remote disk to local when using cloud file storage. */
if(config('filesystems.default') == 's3') if(config('filesystems.default') == 's3')
return TempFile::path(Storage::disk($disk)->url($file_path)); return TempFile::path(Storage::disk($this->disk)->url($file_path));
return $file_path; return $file_path;
} }