Skip to content

Commit 9ec8266

Browse files
author
ccharlesren
committed
uin添加位置调整,去除之前多于添加
Change-Id: I17685c32c325156c531c6f5e0c5fff9032f8e6b0
1 parent 357a21b commit 9ec8266

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Source/LinkApp/Classes/Module/Home/Controller/TIoTHomeViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ - (NSString *)judgeToAppendAppTypeWithUrl:(NSString *)url {
730730
NSMutableString *mString = [NSMutableString stringWithString:url];
731731
if (range.location != NSNotFound) {
732732
NSString *bundleId = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIdentifier"];
733-
[mString insertString:[NSString stringWithFormat:@"appID=%@&lang=%@&uin=%@", bundleId,[TIoTAppUtilOC getLangParameter],TIoTAPPConfig.GlobalDebugUin] atIndex:range.location+1];
733+
[mString insertString:[NSString stringWithFormat:@"appID=%@&lang=%@", bundleId,[TIoTAppUtilOC getLangParameter]] atIndex:range.location+1];
734734
return [NSString stringWithString:mString];
735735
} else {
736736
return url;

Source/LinkApp/Classes/Module/Mine/Controller/TIoTMineViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
196196

197197
NSString *bundleId = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIdentifier"];
198198

199-
NSString *url = [NSString stringWithFormat:@"%@/%@/?appID=%@&lang=%@&ticket=%@&uin=%@", [TIoTCoreAppEnvironment shareEnvironment].h5Url, H5HelpCenter, bundleId, [TIoTAppUtilOC getLangParameter] ,ticket,TIoTAPPConfig.GlobalDebugUin];
199+
NSString *url = [NSString stringWithFormat:@"%@/%@/?appID=%@&lang=%@&ticket=%@", [TIoTCoreAppEnvironment shareEnvironment].h5Url, H5HelpCenter, bundleId, [TIoTAppUtilOC getLangParameter] ,ticket];
200200
vc.urlPath = url;
201201
vc.needJudgeJump = YES;
202202
[self.navigationController pushViewController:vc animated:YES];

Source/LinkApp/Classes/Module/NewDistributionNetwork/Controller/TIoTConfigResultViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ - (void)moreErrorResult:(UIButton *)sender {
213213
NSString *url = nil;
214214
NSString *bundleId = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIdentifier"];
215215

216-
url = [NSString stringWithFormat:@"%@/%@/?appID=%@&lang=%@&uin=%@&ticket=%@#/pages/Functional/HelpCenter/QnAList/QnAList?genCateID=config7", [TIoTCoreAppEnvironment shareEnvironment].h5Url, H5HelpCenter, bundleId, [TIoTAppUtilOC getLangParameter],TIoTAPPConfig.GlobalDebugUin,ticket];
216+
url = [NSString stringWithFormat:@"%@/%@/?appID=%@&lang=%@&ticket=%@#/pages/Functional/HelpCenter/QnAList/QnAList?genCateID=config7", [TIoTCoreAppEnvironment shareEnvironment].h5Url, H5HelpCenter, bundleId, [TIoTAppUtilOC getLangParameter],ticket];
217217
vc.urlPath = url;
218218
vc.needJudgeJump = YES;
219219
[self.navigationController pushViewController:vc animated:YES];

0 commit comments

Comments
 (0)