Skip to content

Commit 38fb7e4

Browse files
committed
bump to 5.3.3
2 parents d20fe34 + 76b4b22 commit 38fb7e4

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
# 5.3.2
1+
# 5.3.3
22
* Android Sdk升级到15.8.40
33
* iOS Sdk升级到15.8.40.1
44
* OpenHarmony Sdk升级到15.8.42
55

6+
# 5.3.2
7+
* Merge #177
8+
9+
610
# 5.3.1
711
* Merge #176
812

ios/Classes/TobiasPlugin.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,11 @@ - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDiction
6767

6868
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nonnull))restorationHandler{
6969
if ([userActivity.activityType isEqualToString:NSUserActivityTypeBrowsingWeb]) {
70-
[[AlipaySDK defaultService] handleOpenUniversalLink:userActivity standbyCallback:^(NSDictionary *resultDic) {
71-
}];
72-
}
70+
__weak TobiasPlugin* __self = self;
71+
[[AlipaySDK defaultService] handleOpenUniversalLink:userActivity standbyCallback:^(NSDictionary *resultDic) {
72+
[__self onPayResultReceived:resultDic];
73+
}];
74+
}
7375
return NO;
7476
}
7577

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: tobias
22
description: A Flutter plugin for allowing users to authenticate or pay with native Android/iOS/OpenHarmony AliPay SDKs.
3-
version: 5.3.2
3+
version: 5.3.3
44
homepage: https://github.com/OpenFlutter/tobias
55

66
environment:

0 commit comments

Comments
 (0)