From ea9d0f58e9411fb9742b45c4f0d5c38c0324087f Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sat, 18 Dec 2021 01:28:22 +0100 Subject: [PATCH] fix(core): update --- ts/smartbucket.classes.smartbucket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/smartbucket.classes.smartbucket.ts b/ts/smartbucket.classes.smartbucket.ts index e89fdb9..84bfd72 100644 --- a/ts/smartbucket.classes.smartbucket.ts +++ b/ts/smartbucket.classes.smartbucket.ts @@ -22,7 +22,7 @@ export class SmartBucket { this.minioClient = new plugins.minio.Client({ endPoint: this.config.endpoint, port: configArg.port || 443, - useSSL: configArg.useSsl || true, + useSSL: configArg.useSsl !== undefined ? configArg.useSsl : true, accessKey: this.config.accessKey, secretKey: this.config.accessSecret, });