aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-02-13 17:05:10 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-02-13 17:05:10 +0100
commit69e49f37e7d1069c133162c521f892d8eb6599d0 (patch)
tree9a2374c5cfb1166bb4c4e86d82b91019d62bc43e /src
parentMerge branch 'feature/spellcheck-autodetect' into release/5.0.0 (diff)
downloadferdium-app-69e49f37e7d1069c133162c521f892d8eb6599d0.tar.gz
ferdium-app-69e49f37e7d1069c133162c521f892d8eb6599d0.tar.zst
ferdium-app-69e49f37e7d1069c133162c521f892d8eb6599d0.zip
fix dictionary path
Diffstat (limited to 'src')
-rw-r--r--src/config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.js b/src/config.js
index 101a4379a..aecba45be 100644
--- a/src/config.js
+++ b/src/config.js
@@ -58,4 +58,4 @@ export const FILE_SYSTEM_SETTINGS_TYPES = [
58export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config'); 58export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config');
59 59
60// Replacing app.asar is not beautiful but unforunately necessary 60// Replacing app.asar is not beautiful but unforunately necessary
61export const DICTIONARY_PATH = asarPath(path.join(__dirname, 'dictionaries').replace('app.asar', 'app.asar.unpacked')); 61export const DICTIONARY_PATH = asarPath(path.join(__dirname, 'dictionaries'));