From 98c935c1e0c10cb15140224a81096622d4ff99bd Mon Sep 17 00:00:00 2001 From: Ev Haus Date: Thu, 31 Jan 2019 10:22:01 -0800 Subject: [PATCH] Fixed typo introduced in #259 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f60cc17f..00f69081 100644 --- a/README.md +++ b/README.md @@ -278,13 +278,13 @@ If your Gitlab server is running via HTTPS, the proper way to pass in your certi }, ``` -Although we don't encourage it, if you absolutely must allow insecure certificates, you can instantiate the API with `rejectAuthorized` set to `true` like this: +Although we don't encourage it, if you absolutely must allow insecure certificates, you can instantiate the API with `rejectAuthorized` set to `false` like this: ``` const api = new Gitlab({ url: '...', token: '...', - rejectUnauthorized: true + rejectUnauthorized: false }) ```