You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, tapping on "Add new card", tapping back, then tapping
"Add new card" again results in the second tap on "Add new card" not
triggering `AddPaymentMethodActivity` to be started.
Remove `distinctUntilChanged()` operator on `_addPaymentMethodArgs`
to fix this.
Fixes#3453
Currently, tapping on "Add new card", tapping back, then tapping
"Add new card" again results in the second tap on "Add new card" not
triggering `AddPaymentMethodActivity` to be started.
Remove `distinctUntilChanged()` operator on `_addPaymentMethodArgs`
to fix this.
Fixes#3453
Summary
Add new card...
doesn't work the second time.To reproduce:
PaymentMethodsActivity
Add new card...
Add new card...
stripe-issue.mp4
Code to reproduce
Code used to start the PaymentSession
SDK version
implementation('com.stripe:stripe-android:16.3.0')
Other information
I think the cause of the problem is this
distinctUntilChanged
. The second time the value is filtered because it's equal to the previous onestripe-android/stripe/src/main/java/com/stripe/android/view/PaymentMethodsAdapter.kt
Line 52 in 97c3ac3
The text was updated successfully, but these errors were encountered: