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