fix(YouTube - Client spoof): Set the client version correctly

Previously the version was hardcoded.
This commit is contained in:
oSumAtrIX 2023-10-26 00:07:02 +02:00
parent 55bdb7db73
commit 5e80ccd6d6

View File

@ -31,7 +31,7 @@ final class PlayerRoutes {
JSONObject client = new JSONObject();
client.put("clientName", "ANDROID");
client.put("clientVersion", "18.37.36");
client.put("clientVersion", ReVancedUtils.getVersionName());
client.put("androidSdkVersion", 34);
context.put("client", client);