Commit b5425b7c authored by 朱璇's avatar 朱璇

bugfix @陈雪 [ios-授权]未开启相机和麦克风权限时,点击发起呼叫按钮,连续弹出授权相机和麦克风弹窗

parent 3078e812
......@@ -390,7 +390,9 @@
}
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
}]];
[[GMBaseTool getCurrentViewController] presentViewController:alert animated:YES completion:nil];
if (![[GMBaseTool getCurrentViewController] isKindOfClass:[UIAlertController class]]) {
[[GMBaseTool getCurrentViewController] presentViewController:alert animated:YES completion:nil];
}
}
- (void)showCameraAlert {
......@@ -405,7 +407,9 @@
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
}]];
[[GMBaseTool getCurrentViewController] presentViewController:alert animated:YES completion:nil];
if (![[GMBaseTool getCurrentViewController] isKindOfClass:[UIAlertController class]]) {
[[GMBaseTool getCurrentViewController] presentViewController:alert animated:YES completion:nil];
}
}
#pragma mark - 权限获取埋点(只有两个权限全部为点同一状态才算YES,并且必须两个都音视频都授权才进行埋点)
- (void)audioAndVideoJurisdiction:(BOOL)isOpen {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment