Move message send until after configuration should be loaded

This commit is contained in:
angusiguess 2017-10-05 11:15:56 -03:00 committed by Roman Volosovskyi
parent 4c8935a16f
commit 639606a716
1 changed files with 1 additions and 2 deletions

View File

@ -65,7 +65,6 @@ class StatusModule extends ReactContextBaseJavaModule implements LifecycleEventL
if (status == null) { if (status == null) {
status = new ServiceConnector(currentActivity, StatusService.class); status = new ServiceConnector(currentActivity, StatusService.class);
status.registerHandler(this); status.registerHandler(this);
} }
status.bindService(); status.bindService();
@ -220,6 +219,7 @@ class StatusModule extends ReactContextBaseJavaModule implements LifecycleEventL
String res = Statusgo.StartNode(config); String res = Statusgo.StartNode(config);
Log.d(TAG, "StartNode result: " + res); Log.d(TAG, "StartNode result: " + res);
Log.d(TAG, "Geth node started"); Log.d(TAG, "Geth node started");
status.sendMessage();
} }
private String getOldExternalDir() { private String getOldExternalDir() {
@ -305,7 +305,6 @@ class StatusModule extends ReactContextBaseJavaModule implements LifecycleEventL
@ReactMethod @ReactMethod
public void startNode(final String config) { public void startNode(final String config) {
Log.d(TAG, "startNode"); Log.d(TAG, "startNode");
status.sendMessage();
if (!checkAvailability()) { if (!checkAvailability()) {
return; return;
} }