aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-12 09:19:10 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-12 09:19:10 +0200
commit828f4bce4ee1d7c53c132f0cce6032c121632015 (patch)
tree732d53bf1419dfd315f96bcb7cc4a43f34d31389 /src/stores/AppStore.js
parentMerge branch 'private-notifications' (diff)
downloadferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.tar.gz
ferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.tar.zst
ferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.zip
Use ferdi namespace on debugger
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 61b63d52e..5bae6e8d4 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -23,7 +23,7 @@ import { getLocale } from '../helpers/i18n-helpers';
23import { getServiceIdsFromPartitions, removeServicePartitionDirectory } from '../helpers/service-helpers.js'; 23import { getServiceIdsFromPartitions, removeServicePartitionDirectory } from '../helpers/service-helpers.js';
24import { isValidExternalURL } from '../helpers/url-helpers'; 24import { isValidExternalURL } from '../helpers/url-helpers';
25 25
26const debug = require('debug')('Franz:AppStore'); 26const debug = require('debug')('Ferdi:AppStore');
27 27
28const { app, systemPreferences, screen } = remote; 28const { app, systemPreferences, screen } = remote;
29 29
@@ -31,7 +31,7 @@ const mainWindow = remote.getCurrentWindow();
31 31
32const defaultLocale = DEFAULT_APP_SETTINGS.locale; 32const defaultLocale = DEFAULT_APP_SETTINGS.locale;
33const autoLauncher = new AutoLaunch({ 33const autoLauncher = new AutoLaunch({
34 name: 'Franz', 34 name: 'Ferdi',
35}); 35});
36 36
37export default class AppStore extends Store { 37export default class AppStore extends Store {