From 7882e124844f55af6714786fae53931d124ce535 Mon Sep 17 00:00:00 2001 From: VancedOfficial <61597887+VancedOfficial@users.noreply.github.com> Date: Sat, 24 Oct 2020 21:46:53 +0300 Subject: [PATCH] setMillisecondMethod replaceable with patcher --- integrations/java/pl/jakubweg/PlayerController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/java/pl/jakubweg/PlayerController.java b/integrations/java/pl/jakubweg/PlayerController.java index fe547ac8bc..42ec5ce2c1 100644 --- a/integrations/java/pl/jakubweg/PlayerController.java +++ b/integrations/java/pl/jakubweg/PlayerController.java @@ -95,7 +95,7 @@ public class PlayerController { Log.i(TAG, String.format("onCreate called with object %s on thread %s", o.toString(), Thread.currentThread().toString())); try { - setMillisecondMethod = o.getClass().getMethod("a", Long.TYPE); + setMillisecondMethod = o.getClass().getMethod("replaceMeWithsetMillisecondMethod", Long.TYPE); setMillisecondMethod.setAccessible(true); lastKnownVideoTime = 0;