feat: 修复因为延迟引起的海外弹窗弹出闪退问题 https://sentry.shanqu.cc/organizations/lightgame/issues/360465/?project=22
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package com.gh.common.chain
|
||||
|
||||
import android.app.Activity
|
||||
import android.content.Context
|
||||
import com.gh.common.util.DialogUtils
|
||||
import com.gh.common.util.DirectUtils
|
||||
@ -11,6 +12,11 @@ class LandPageAddressHandler : DownloadChainHandler() {
|
||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
||||
if (gameEntity.isLandPageAddressDialog()) {
|
||||
TempCertificationUtils.checkCertificationBeforeAction(gameEntity) {
|
||||
if (context is Activity && context.isFinishing) {
|
||||
// 当前 context 已经无效,不需要再传递执行下去了
|
||||
return@checkCertificationBeforeAction
|
||||
}
|
||||
|
||||
DialogUtils.showLandPageAddressDialog(context, gameEntity) {// 跳转第三方落地页
|
||||
DirectUtils.directToExternalBrowser(context, gameEntity.landPageAddressDialog!!.link!!)
|
||||
}
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
package com.gh.common.chain
|
||||
|
||||
import android.app.Activity
|
||||
import android.content.Context
|
||||
import com.gh.common.util.DialogUtils
|
||||
import com.gh.common.util.TempCertificationUtils
|
||||
@ -10,6 +11,11 @@ class OverseaDownloadHandler : DownloadChainHandler() {
|
||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
||||
if (gameEntity.isOverseaAddressDialog()) {
|
||||
TempCertificationUtils.checkCertificationBeforeAction(gameEntity) {
|
||||
if (context is Activity && context.isFinishing) {
|
||||
// 当前 context 已经无效,不需要再传递执行下去了
|
||||
return@checkCertificationBeforeAction
|
||||
}
|
||||
|
||||
DialogUtils.showOverseaDownloadDialog(context, gameEntity) {// 跳转海外下载地址弹窗
|
||||
if (hasNext()) {
|
||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
||||
|
||||
@ -1258,7 +1258,7 @@ public class DialogUtils {
|
||||
throw new NullPointerException("dialog context is null");
|
||||
}
|
||||
|
||||
if (context instanceof Activity && !((Activity) context).isFinishing()) {
|
||||
if (context instanceof Activity) {
|
||||
return context;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user