mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-26 07:40:35 -04:00
Add missing bootstrap flag check
This commit is contained in:
parent
47c00e77d6
commit
0731ab3bb3
1 changed files with 10 additions and 6 deletions
|
@ -168,12 +168,16 @@ public class TraderDisputeView extends ActivatableView<VBox, Void> {
|
||||||
|
|
||||||
disputeDirectMessageListListener = c -> scrollToBottom();
|
disputeDirectMessageListListener = c -> scrollToBottom();
|
||||||
|
|
||||||
p2PService.addP2PServiceListener(new BootstrapListener() {
|
if (!p2PService.isBootstrapped()) {
|
||||||
@Override
|
p2PService.addP2PServiceListener(new BootstrapListener() {
|
||||||
public void onBootstrapComplete() {
|
@Override
|
||||||
isBootstrapped = true;
|
public void onBootstrapComplete() {
|
||||||
}
|
isBootstrapped = true;
|
||||||
});
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
isBootstrapped = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue