Commit a01efde0 authored by wanglei's avatar wanglei

...

parent 4498ed5c
......@@ -131,7 +131,13 @@ class SplashActivity : BaseActivity<ActivitySplashBinding>(), SplashView {
private fun handleActionIdJump() {
actionId = intent.extras?.getString("actionId")
LogEx.logDebug(TAG, "handleActionIdJump actionId=$actionId")
val isHotLaunch = intent.extras?.getBoolean("isHotLaunch", false) ?: false
LogEx.logDebug(TAG, "handleActionIdJump actionId=$actionId isHotLaunch=$isHotLaunch")
if (isHotLaunch) {
finish()
return
}
when (actionId) {
PopupConstObject.ACTION_STAY_HOME -> {
......
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