We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8309f87 commit bea0ef8Copy full SHA for bea0ef8
Plan/common/src/main/java/com/djrapitops/plan/gathering/JoinAddressValidator.java
@@ -25,6 +25,7 @@
25
import javax.inject.Singleton;
26
import java.net.URI;
27
import java.net.URISyntaxException;
28
+import java.util.ArrayList;
29
import java.util.List;
30
31
/**
@@ -47,6 +48,7 @@ public JoinAddressValidator(PlanConfig config) {
47
48
private void prepareFilteredAddresses() {
49
if (filteredAddresses == null) {
50
filteredAddresses = config.get(DataGatheringSettings.FILTER_JOIN_ADDRESSES);
51
+ if (filteredAddresses == null) filteredAddresses = new ArrayList<>();
52
}
53
54
0 commit comments