Modify make null exception and throwable message to empty string in Throwable.throwToApp function in HookParam

This commit is contained in:
2023-01-31 21:15:20 +08:00
parent 8079b89615
commit cf2473b92c

View File

@@ -170,7 +170,7 @@ class HookParam internal constructor(
*/
fun Throwable.throwToApp() {
param?.throwable = this
yLoggerE(msg = message ?: "$this", e = this)
yLoggerE(msg = message ?: "", e = this)
}
/**