Skip to content
This repository was archived by the owner on Aug 22, 2021. It is now read-only.

Commit 1fb3134

Browse files
committed
Bugfix. overtrue#18
1 parent a4edf9b commit 1fb3134

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StorageManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ protected function paginateFiles(array $files, $start = 0, $size = 50)
108108
{
109109
return collect($files)->where('type', 'file')->splice($start)->take($size)->map(function ($file) {
110110
return [
111-
'url' => $this->disk->url($file['path']),
111+
'url' => $this->getUrl($file['path']),
112112
'mtime' => $file['timestamp'],
113113
];
114114
})->all();

0 commit comments

Comments
 (0)