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 fa45782 commit 2da11abCopy full SHA for 2da11ab
CHANGELOG.md
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
6
### Changed
7
### Removed
8
### Fixed
9
+* core: fix payment validation
10
+
11
+## [0.80.6]
12
+### Fixed
13
* ui: fix crash when adding a payment mehtod (APPS-2155)
14
15
## [0.80.5]
core/src/main/java/io/snabble/sdk/payment/PaymentCredentialsStore.java
@@ -49,7 +49,8 @@ private class Data {
49
50
@RestrictTo(RestrictTo.Scope.LIBRARY)
51
public PaymentCredentialsStore() {
52
-
+ data = new Data();
53
+ data.credentialsList = new ArrayList<>();
54
}
55
56
0 commit comments