aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index bbcf78a43..ac6ca6d2d 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -7,7 +7,6 @@ import moment from 'moment';
7import AutoLaunch from 'auto-launch'; 7import AutoLaunch from 'auto-launch';
8import ms from 'ms'; 8import ms from 'ms';
9import { URL } from 'url'; 9import { URL } from 'url';
10import os from 'os';
11import path from 'path'; 10import path from 'path';
12import { readJsonSync } from 'fs-extra'; 11import { readJsonSync } from 'fs-extra';
13 12
@@ -15,7 +14,7 @@ import Store from './lib/Store';
15import Request from './lib/Request'; 14import Request from './lib/Request';
16import { CHECK_INTERVAL } from '../config'; 15import { CHECK_INTERVAL } from '../config';
17import { 16import {
18 DEFAULT_APP_SETTINGS, isMac, ferdiVersion, electronVersion, 17 DEFAULT_APP_SETTINGS, isMac, ferdiVersion, electronVersion, osRelease,
19} from '../environment'; 18} from '../environment';
20import locales from '../i18n/translations'; 19import locales from '../i18n/translations';
21import { onVisibilityChange } from '../helpers/visibility-helper'; 20import { onVisibilityChange } from '../helpers/visibility-helper';
@@ -261,7 +260,7 @@ export default class AppStore extends Store {
261 return { 260 return {
262 host: { 261 host: {
263 platform: process.platform, 262 platform: process.platform,
264 release: os.release(), 263 release: osRelease,
265 screens: screen.getAllDisplays(), 264 screens: screen.getAllDisplays(),
266 }, 265 },
267 ferdi: { 266 ferdi: {