Skip to content

Commit 3ecf8f2

Browse files
committed
removed listing of unsupported payment methods on different projects
1 parent 34b406e commit 3ecf8f2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.50.8]
5+
6+
### Changed
7+
- Removed listing of unsupported payment methods on different projects
8+
49
## [0.50.7]
510

611
### Changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
}
3232

3333
project.ext {
34-
sdkVersion='0.50.7'
34+
sdkVersion='0.50.8'
3535
versionCode=1
3636

3737
compileSdkVersion=31

ui/src/main/java/io/snabble/sdk/ui/cart/PaymentSelectionHelper.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,7 @@ private void updateEntries() {
331331
e.hint = context.getString(R.string.Snabble_Shoppingcart_notForThisPurchase);
332332
e.isAvailable = false;
333333
} else {
334-
e.hint = context.getString(R.string.Snabble_Shoppingcart_notForVendor);
335-
e.isAvailable = false;
334+
continue;
336335
}
337336

338337
Integer iconResId = icons.get(e.paymentMethod);

0 commit comments

Comments
 (0)