mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
fix npe on initial startup
This commit is contained in:
parent
a2ead56593
commit
2faddc1133
1 changed files with 2 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue