@@ -43,14 +43,16 @@ import * as Events from 'Common/Events';
4343import { getNotification , i18n } from 'Common/Translator' ;
4444
4545import SocialStore from 'Stores/Social' ;
46+ import AppStore from 'Stores/User/App' ;
4647import SettingsStore from 'Stores/User/Settings' ;
48+ import NotificationStore from 'Stores/User/Notification' ;
4749import AccountStore from 'Stores/User/Account' ;
50+ import ContactStore from 'Stores/User/Contact' ;
4851import IdentityStore from 'Stores/User/Identity' ;
4952import TemplateStore from 'Stores/User/Template' ;
5053import FolderStore from 'Stores/User/Folder' ;
5154import PgpStore from 'Stores/User/Pgp' ;
5255import MessageStore from 'Stores/User/Message' ;
53- import ContactStore from 'Stores/User/Contact' ;
5456import QuotaStore from 'Stores/User/Quota' ;
5557
5658import * as Local from 'Storage/Client' ;
@@ -1258,11 +1260,11 @@ class AppUser extends AbstractApp
12581260
12591261 super . bootstart ( ) ;
12601262
1261- require ( 'Stores/User/App' ) . populate ( ) ;
1262- require ( 'Stores/User/Settings' ) . populate ( ) ;
1263- require ( 'Stores/User/Notification' ) . populate ( ) ;
1264- require ( 'Stores/User/Account' ) . populate ( ) ;
1265- require ( 'Stores/User/Contact' ) . populate ( ) ;
1263+ AppStore . populate ( ) ;
1264+ SettingsStore . populate ( ) ;
1265+ NotificationStore . populate ( ) ;
1266+ AccountStore . populate ( ) ;
1267+ ContactStore . populate ( ) ;
12661268
12671269 let
12681270 contactsSyncInterval = pInt ( Settings . settingsGet ( 'ContactsSyncInterval' ) ) ;
0 commit comments