fix(Reddit): some patches are broken in Reddit v2024.02.0+

This commit is contained in:
inotia00 2024-01-17 19:56:31 +09:00
parent 0915debd29
commit fc58ab7244

View File

@ -14,6 +14,6 @@ object ScreenNavigatorFingerprint : MethodFingerprint(
Opcode.CONST_STRING,
Opcode.INVOKE_STATIC
),
strings = listOf("uri", "android.intent.action.VIEW"),
customFingerprint = { methodDef, _ -> methodDef.definingClass.endsWith("/RedditScreenNavigator;") }
strings = listOf("uri", "android.intent.action.VIEW", "com.reddit"),
customFingerprint = { _, classDef -> classDef.sourceFile == "RedditScreenNavigator.kt" }
)