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 68a0f41 commit 975671dCopy full SHA for 975671d
core/src/main/java/io/snabble/sdk/Project.java
@@ -215,6 +215,8 @@ void parse(JsonObject jsonObject) {
215
paymentMethodDescriptors.removeIf(paymentMethodDescriptor ->
216
PaymentMethod.fromString(paymentMethodDescriptor.getId()) == null);
217
this.paymentMethodDescriptors = Collections.unmodifiableList(paymentMethodDescriptors);
218
+ } else {
219
+ this.paymentMethodDescriptors = Collections.unmodifiableList(Collections.emptyList());
220
}
221
222
parseShops(jsonObject);
0 commit comments