mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-04-30 06:34:28 +02:00
9 lines
275 B
Kotlin
9 lines
275 B
Kotlin
package app.revanced.patches.trakt.fingerprints
|
|
|
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
|
|
|
object RemoteUserFingerprint : MethodFingerprint(
|
|
customFingerprint = { methodDef, _ ->
|
|
methodDef.definingClass.endsWith("RemoteUser;")
|
|
}
|
|
) |