feat(YouTube): Support version 18.43.45 for Playback speed and Restore old video quality menu

This commit is contained in:
oSumAtrIX
2023-11-11 17:54:34 +01:00
parent 1a00ed958e
commit a0cfa1f3e0
2 changed files with 5 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ object RecyclerViewTreeHookPatch : BytecodePatch(
RecyclerViewTreeObserverFingerprint.result?.let {
it.mutableMethod.apply {
val insertIndex = it.scanResult.patternScanResult!!.startIndex + 5
val insertIndex = it.scanResult.patternScanResult!!.startIndex
val recyclerViewParameter = 2
addHook = { classDescriptor ->

View File

@@ -11,11 +11,10 @@ object RecyclerViewTreeObserverFingerprint : MethodFingerprint(
opcodes = listOf(
Opcode.NEW_INSTANCE,
Opcode.INVOKE_DIRECT,
Opcode.IPUT_OBJECT,
Opcode.IGET_BOOLEAN,
Opcode.IF_NEZ,
Opcode.INVOKE_VIRTUAL_RANGE,
Opcode.MOVE_RESULT_OBJECT
Opcode.INVOKE_VIRTUAL,
Opcode.NEW_INSTANCE,
Opcode.INVOKE_DIRECT,
Opcode.IPUT_OBJECT
),
strings = listOf("LithoRVSLCBinder")
)