clearer notion is running error message

This commit is contained in:
dragonwocky 2020-11-12 23:06:56 +11:00
parent 621aaa3978
commit 1568d31b0c
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
3 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@
- improved: use an svg for the scroll-to-top button.
- improved: use a better-matching icon and add transitions to the property layout toggle.
- improved: themes are directly applied to tabs and menu rather than sync-ed between (infinite loading).
- improved: error message "is notion running?" --> clearer "make sure notion isn't running!"
- bugfix: disable fadein of selected block halo with snappy transitions.
- bugfix: increase contrast of `--theme_dark--interactive_hover` in dark+ and dracula.
- bugfix: tabs are focused properly for input.

View File

@ -179,7 +179,7 @@ module.exports = async function ({ overwrite_version, friendly_errors } = {}) {
}`
);
} else if (['EIO', 'EBUSY'].includes(err.code) && friendly_errors) {
console.error('file access failed: is notion running?');
console.error("file access failed: make sure notion isn't running!");
} else console.error(err);
return false;
}

View File

@ -110,7 +110,7 @@ module.exports = async function ({ delete_data, friendly_errors } = {}) {
}`
);
} else if (['EIO', 'EBUSY'].includes(err.code) && friendly_errors) {
console.error('file access failed: is notion running?');
console.error("file access failed: make sure notion isn't running!");
} else console.error(err);
return false;
}