Skip to content

Commit

Permalink
Merge pull request #6438 from jmacxx/fix_filtermanager_npe
Browse files Browse the repository at this point in the history
Fix NPE in seednode.
  • Loading branch information
ripcurlx authored Dec 5, 2022
2 parents 16166c4 + 75f224c commit c381006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/filter/FilterManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void onAllServicesInitialized() {

// On mainNet we expect to have received a filter object, if not show a popup to the user to inform the
// Bisq devs.
if (Config.baseCurrencyNetwork().isMainnet() && getFilter() == null) {
if (Config.baseCurrencyNetwork().isMainnet() && getFilter() == null && filterWarningHandler != null) {
filterWarningHandler.accept(Res.get("popup.warning.noFilter"));
}

Expand Down

0 comments on commit c381006

Please sign in to comment.