From f01ba42a21a2f61310ccf07c5e2abc9351b987f7 Mon Sep 17 00:00:00 2001 From: Buster Neece Date: Fri, 7 Oct 2022 21:04:18 -0500 Subject: [PATCH] CBF fix. --- src/Entity/StorageLocation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/StorageLocation.php b/src/Entity/StorageLocation.php index f73986b01..42ef8539b 100644 --- a/src/Entity/StorageLocation.php +++ b/src/Entity/StorageLocation.php @@ -597,7 +597,7 @@ class StorageLocation implements Stringable, IdentifiableEntityInterface $creds = (!empty($this->dropboxAppKey) && !empty($this->dropboxAppSecret)) ? [$this->dropboxAppKey, $this->dropboxAppSecret] : $this->dropboxAuthToken; - + return new Client($creds); }