This commit is contained in:
Craig Raw 2024-03-05 15:10:33 +02:00
parent 55e7689f7c
commit c34a423f95

View file

@ -868,13 +868,13 @@ public class AppServices {
return new Task<>() {
@Override
protected Void call() {
Platform.runLater(() -> openFileUriArguments(window));
return null;
}
};
}
};
service.setExecutor(Storage.LoadWalletService.getSingleThreadedExecutor());
service.setOnSucceeded(event -> openFileUriArguments(window));
service.start();
}
}