mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
clearer notion is running error message
This commit is contained in:
parent
621aaa3978
commit
1568d31b0c
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user