From 1a96acb54ce917a8ded8525378a5946db50e76d9 Mon Sep 17 00:00:00 2001 From: IJustDev Date: Sat, 26 Dec 2020 18:37:33 +0100 Subject: [PATCH] refactor: add missing semicolon --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 0bd5792..1390956 100644 --- a/src/config.ts +++ b/src/config.ts @@ -89,6 +89,6 @@ export class Config implements ConfigTypes { } public get sslVerify() { - return this.loadConfigValue('sslVerify', 'boolean') + return this.loadConfigValue('sslVerify', 'boolean'); } }