diff options
author | provokateurin <kate@provokateurin.de> | 2024-09-15 15:23:43 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-09-15 17:19:40 +0000 |
commit | 69b01a265c5802c922bc7eda117e202ff5027f3c (patch) | |
tree | 6a7734fa9c2f8546282cbdd717cddc5927d96e39 /lib | |
parent | 80f8b7c65012570158edadae05955e50ec039b13 (diff) | |
download | nextcloud-server-69b01a265c5802c922bc7eda117e202ff5027f3c.tar.gz nextcloud-server-69b01a265c5802c922bc7eda117e202ff5027f3c.zip |
fix(S3ConfigTrait): Allow proxy field to take falsebackport/48016/stable30
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/ObjectStore/S3ConfigTrait.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/ObjectStore/S3ConfigTrait.php b/lib/private/Files/ObjectStore/S3ConfigTrait.php index 3a399e6413d..63f14ac2d00 100644 --- a/lib/private/Files/ObjectStore/S3ConfigTrait.php +++ b/lib/private/Files/ObjectStore/S3ConfigTrait.php @@ -20,7 +20,7 @@ trait S3ConfigTrait { protected int $timeout; - protected string $proxy; + protected string|false $proxy; protected string $storageClass; |