aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/settingsWS
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/features/settingsWS
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/features/settingsWS')
-rwxr-xr-xsrc/features/settingsWS/index.js2
-rwxr-xr-xsrc/features/settingsWS/store.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/features/settingsWS/index.js b/src/features/settingsWS/index.js
index 2064d2973..6711296da 100755
--- a/src/features/settingsWS/index.js
+++ b/src/features/settingsWS/index.js
@@ -1,7 +1,7 @@
1import { reaction } from 'mobx'; 1import { reaction } from 'mobx';
2import { SettingsWSStore } from './store'; 2import { SettingsWSStore } from './store';
3 3
4const debug = require('debug')('Franz:feature:settingsWS'); 4const debug = require('debug')('Ferdi:feature:settingsWS');
5 5
6export const settingsStore = new SettingsWSStore(); 6export const settingsStore = new SettingsWSStore();
7 7
diff --git a/src/features/settingsWS/store.js b/src/features/settingsWS/store.js
index 167a70d10..9100f33d1 100755
--- a/src/features/settingsWS/store.js
+++ b/src/features/settingsWS/store.js
@@ -6,7 +6,7 @@ import { FeatureStore } from '../utils/FeatureStore';
6import { createReactions } from '../../stores/lib/Reaction'; 6import { createReactions } from '../../stores/lib/Reaction';
7import { WS_API } from '../../environment'; 7import { WS_API } from '../../environment';
8 8
9const debug = require('debug')('Franz:feature:settingsWS:store'); 9const debug = require('debug')('Ferdi:feature:settingsWS:store');
10 10
11export class SettingsWSStore extends FeatureStore { 11export class SettingsWSStore extends FeatureStore {
12 stores = null; 12 stores = null;