Skip to content

Commit 970384c

Browse files
committedMay 31, 2018
修复OpenShare+QQ使用小写十六进制拼接url scheme callback_name 导致的部分版本QQ不兼容的问题
1 parent 5f124c3 commit 970384c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎openshare/OpenShare+QQ.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ @implementation OpenShare (QQ)
2020
};
2121

2222
+(void)connectQQWithAppId:(NSString *)appId{
23-
[self set:schema Keys:@{@"appid":appId,@"callback_name":[NSString stringWithFormat:@"QQ%08llx",[appId longLongValue]]}];
23+
[self set:schema Keys:@{@"appid":appId,@"callback_name":[NSString stringWithFormat:@"QQ%08llX",[appId longLongValue]]}];
2424
}
2525
+(BOOL)isQQInstalled{
2626
return [self canOpen:@"mqqapi://"];

0 commit comments

Comments
 (0)
Please sign in to comment.