This commit is contained in:
2022-02-05 05:26:11 +08:00
parent 3291c1f34d
commit ea0c156e47

View File

@@ -59,7 +59,7 @@ class YukiHookXposedProcessor : SymbolProcessorProvider {
private val KSClassDeclaration.superName private val KSClassDeclaration.superName
get() = try { get() = try {
superTypes.last().element.toString() superTypes.last().element.toString()
} catch (_: Exception) { } catch (_: Throwable) {
"" ""
} }