fix npe on initial startup

This commit is contained in:
Craig Raw 2021-01-13 11:23:38 +02:00
parent a2ead56593
commit 2faddc1133

View file

@ -45,6 +45,8 @@ public class MainApp extends Application {
GlyphFontRegistry.register(new FontAwesome5Brands()); GlyphFontRegistry.register(new FontAwesome5Brands());
Font.loadFont(AppServices.class.getResourceAsStream("/font/RobotoMono-Regular.ttf"), 13); Font.loadFont(AppServices.class.getResourceAsStream("/font/RobotoMono-Regular.ttf"), 13);
AppServices.initialize(this);
boolean createNewWallet = false; boolean createNewWallet = false;
Mode mode = Config.get().getMode(); Mode mode = Config.get().getMode();
if(mode == null) { if(mode == null) {
@ -66,7 +68,6 @@ public class MainApp extends Application {
Config.get().setServerType(ServerType.ELECTRUM_SERVER); Config.get().setServerType(ServerType.ELECTRUM_SERVER);
} }
AppServices.initialize(this);
AppController appController = AppServices.newAppWindow(stage); AppController appController = AppServices.newAppWindow(stage);
if(createNewWallet) { if(createNewWallet) {