mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-01 13:14:16 +08:00
Use electron-spellcheck 1.1.1
This commit is contained in:
parent
4730a84bc3
commit
e5ed15d539
2 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue