Use electron-spellcheck 1.1.1

This commit is contained in:
Ben Gotow 2017-10-03 21:58:27 -07:00
parent 4730a84bc3
commit e5ed15d539
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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);