From 0af3e867634ef6c076bf90ddfc77a74cd264bac1 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Thu, 3 May 2018 22:00:04 -0700 Subject: [PATCH] fix(publisher): remove deprecated option from @octokit/rest params This broke with @octokit/rest.js 15.2.0 ISSUES CLOSED: #493 --- src/util/github.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util/github.js b/src/util/github.js index c50813affb..04d5189541 100644 --- a/src/util/github.js +++ b/src/util/github.js @@ -4,7 +4,6 @@ import merge from 'lodash.merge'; export default class GitHub { constructor(authToken, requireAuth, options = {}) { this.options = merge( - { protocol: 'https' }, options, { headers: { 'user-agent': 'Electron Forge' } } );