This commit is contained in:
gedoor 2021-10-12 10:08:07 +08:00
parent 19ca702fd0
commit ad45a551da
2 changed files with 4 additions and 4 deletions

View File

@ -400,8 +400,7 @@ interface JsExtensions {
}
entry = zis.nextEntry
}
Debug.log("getZipContent 未发现内容")
log("getZipContent 未发现内容")
return null
}

View File

@ -21,6 +21,7 @@ import kotlinx.coroutines.Dispatchers.IO
import kotlinx.coroutines.Dispatchers.Main
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import splitties.init.appCtx
import splitties.views.onClick
class RuleUiLoginDialog : BaseDialogFragment(R.layout.dialog_login) {
@ -106,13 +107,13 @@ class RuleUiLoginDialog : BaseDialogFragment(R.layout.dialog_login) {
source.getLoginJs()?.let {
try {
source.evalJS(it)
toastOnUi(R.string.success)
appCtx.toastOnUi(R.string.success)
withContext(Main) {
dismiss()
}
} catch (e: Exception) {
AppLog.put("登录出错\n${e.localizedMessage}", e)
toastOnUi("error:${e.localizedMessage}")
appCtx.toastOnUi("error:${e.localizedMessage}")
e.printOnDebug()
}
}