Commit a7d75ea5 authored by xujialang's avatar xujialang

场景判断调整:网络检测未通过时继续执行逻辑,并上报该事件

parent 4a140acb
...@@ -39,7 +39,7 @@ public class CheckHelper { ...@@ -39,7 +39,7 @@ public class CheckHelper {
if (!isNetworkAvailable(OutHelp.get().getContext())) { if (!isNetworkAvailable(OutHelp.get().getContext())) {
LogUtil.d(TAG + "(场景检查)网络未连接,不能展示"); LogUtil.d(TAG + "(场景检查)网络未连接,不能展示");
EventUtils.staDialogFail(DialogFailReason.NO_NET, actionState, EventUtils.DIALOG_TYPE_AD); EventUtils.staDialogFail(DialogFailReason.NO_NET, actionState, EventUtils.DIALOG_TYPE_AD);
return false; // return false;
} }
...@@ -92,7 +92,7 @@ public class CheckHelper { ...@@ -92,7 +92,7 @@ public class CheckHelper {
if (!isNetworkAvailable(OutHelp.get().getContext())) { if (!isNetworkAvailable(OutHelp.get().getContext())) {
LogUtil.d(TAG + "(场景检查)网络未连接,不能展示"); LogUtil.d(TAG + "(场景检查)网络未连接,不能展示");
EventUtils.staDialogFail(DialogFailReason.NO_NET, actionState, EventUtils.DIALOG_TYPE_AD); EventUtils.staDialogFail(DialogFailReason.NO_NET, actionState, EventUtils.DIALOG_TYPE_AD);
return false; // return false;
} }
if (!AppOutUtils.isScreenOn()) { if (!AppOutUtils.isScreenOn()) {
......
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