Skip to content

Commit

Permalink
fix: unshort url for 10.30
Browse files Browse the repository at this point in the history
(cherry picked from commit a97fdf8)
  • Loading branch information
dic1911 authored and crimera committed Mar 3, 2024
1 parent 776e700 commit ef3e00f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import com.android.tools.smali.dexlib2.AccessFlags

internal object JsonObjectMapperFingerprint : MethodFingerprint(
// Lcom/twitter/model/json/core/JsonUrlEntity$$JsonObjectMapper;
customFingerprint = { methodDef, _ -> methodDef.name.startsWith("_parse") && methodDef.definingClass == "Lcom/twitter/model/json/core/JsonUrlEntity\$\$JsonObjectMapper;" }
customFingerprint = { methodDef, _ -> methodDef.name.contains("parse") && methodDef.definingClass == "Lcom/twitter/model/json/core/JsonUrlEntity\$\$JsonObjectMapper;" }
)

0 comments on commit ef3e00f

Please sign in to comment.