From e5ed15d539e64508fad25e60b02450f25e9b42b6 Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Tue, 3 Oct 2017 21:58:27 -0700 Subject: [PATCH] Use electron-spellcheck 1.1.1 --- app/package.json | 2 +- app/src/browser/autoupdate-impl-base.es6 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/package.json b/app/package.json index 574c48d0a..ab62c6ec8 100644 --- a/app/package.json +++ b/app/package.json @@ -23,7 +23,7 @@ "color": "^0.7.3", "debug": "github:emorikawa/debug#nylas", "electron-lets-move": "0.0.5", - "electron-spellchecker": "tommoor/electron-spellchecker#ba984b5ae1abf78bf11c5de9363a60e1f261712f", + "electron-spellchecker": "1.1.1", "emissary": "^1.3.1", "emoji-data": "^0.2.0", "encoding": "0.1.12", diff --git a/app/src/browser/autoupdate-impl-base.es6 b/app/src/browser/autoupdate-impl-base.es6 index a1d5e64a0..d1d4f78d8 100644 --- a/app/src/browser/autoupdate-impl-base.es6 +++ b/app/src/browser/autoupdate-impl-base.es6 @@ -21,7 +21,7 @@ export default class AutoupdateImplBase extends EventEmitter { // Hit the feed URL ourselves and see if an update is available. // On linux we can't autoupdate, but we can still show the "update available" bar. https.get({ host: feedHost, path: feedPath }, res => { - console.log(`Manual update check returned ${res.statusCode}`); + console.log(`Manual update check (${feedHost}${feedPath}) returned ${res.statusCode}`); if (res.statusCode === 204) { successCallback(false);