Skip to content

Commit 8a38a8a

Browse files
committed
Update file manager to account for new API error responses
1 parent 46d7ba7 commit 8a38a8a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/Http/Controllers/Server/Files/RemoteRequestController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function directory(Request $request): View
7171
->setAccessToken($request->attributes->get('server_token'))
7272
->getDirectory($requestDirectory);
7373
} catch (RequestException $exception) {
74-
throw new DaemonConnectionException($exception);
74+
throw new DaemonConnectionException($exception, true);
7575
}
7676

7777
return view('server.files.list', [

0 commit comments

Comments
 (0)