mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-05-02 07:34:32 +02:00
11 lines
349 B
Kotlin
11 lines
349 B
Kotlin
package app.revanced.patches.trakt.fingerprints
|
|
|
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
|
|
|
object IsVIPEPFingerprint : MethodFingerprint(
|
|
customFingerprint = custom@{ methodDef, _ ->
|
|
if (!methodDef.definingClass.endsWith("RealmUserSettings;")) return@custom false
|
|
|
|
methodDef.name == "isVIPEP"
|
|
}
|
|
) |