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
Привет, в этом методе кажется paymentParameters вообще не нужен, также без строгого каста в <String, dynamic> вот эта строка 25/kassa.dart: ..addAll({"confirmationUrl": confirmationUrl.toString()})));
выдает исключение: Unhandled Exception: type '_InternalLinkedHashMap<dynamic, dynamic>' is not a subtype of type 'Map<String, dynamic>' of 'other'
В YandexKassa.kt/строка 93: if (data != null && callback != null) callback!!.success(Checkout.createTokenizationResult(data))
Ловит нулл и вылетает при обработке confirm3dsCheckout, со startCheckout нормально.
На iOS 10.0 с версией 3.61 и 4.0.0: confirm3dsCheckout вообще не запускается, в отличии от startCheckout.
Спасибо за плагин/труд.
The text was updated successfully, but these errors were encountered:
Привет, в этом методе кажется paymentParameters вообще не нужен, также без строгого каста в <String, dynamic> вот эта строка 25/kassa.dart:
..addAll({"confirmationUrl": confirmationUrl.toString()})));
выдает исключение:
Unhandled Exception: type '_InternalLinkedHashMap<dynamic, dynamic>' is not a subtype of type 'Map<String, dynamic>' of 'other'
Помогло:
..addAll(<String, dynamic>{"confirmationUrl": confirmationUrl.toString()})));
В YandexKassa.kt/строка 93:
if (data != null && callback != null) callback!!.success(Checkout.createTokenizationResult(data))
Ловит нулл и вылетает при обработке confirm3dsCheckout, со startCheckout нормально.
На iOS 10.0 с версией 3.61 и 4.0.0: confirm3dsCheckout вообще не запускается, в отличии от startCheckout.
Спасибо за плагин/труд.
The text was updated successfully, but these errors were encountered: