Skip to content

Commit 2da11ab

Browse files
authored
Fix payment validation (Apps-2158) (#243)
1 parent fa45782 commit 2da11ab

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
66
### Changed
77
### Removed
88
### Fixed
9+
* core: fix payment validation
10+
11+
## [0.80.6]
12+
### Fixed
913
* ui: fix crash when adding a payment mehtod (APPS-2155)
1014

1115
## [0.80.5]

core/src/main/java/io/snabble/sdk/payment/PaymentCredentialsStore.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ private class Data {
4949

5050
@RestrictTo(RestrictTo.Scope.LIBRARY)
5151
public PaymentCredentialsStore() {
52-
52+
data = new Data();
53+
data.credentialsList = new ArrayList<>();
5354
}
5455

5556
@RestrictTo(RestrictTo.Scope.LIBRARY)

0 commit comments

Comments
 (0)