Skip to content

Commit bfddb6c

Browse files
authored
Fix type error in isSupportOpenBusinessView on iOS (#707)
This PR fixes issue #706.
1 parent 954856e commit bfddb6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/Classes/FluwxPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ - (void)checkSupportOpenBusinessView:(FlutterMethodCall *)call result:(FlutterRe
261261
if (![WXApi isWXAppInstalled]) {
262262
result([FlutterError errorWithCode:@"WeChat Not Installed" message:@"Please install the WeChat first" details:nil]);
263263
} else {
264-
result(@(true));
264+
result(@(YES));
265265
}
266266
}
267267

0 commit comments

Comments
 (0)