We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb7bd45 commit 082f32cCopy full SHA for 082f32c
app/src/main/java/com/wmods/wppenhacer/xposed/features/media/MediaQuality.java
@@ -108,9 +108,9 @@ protected void afterHookedMethod(MethodHookParam param) throws Throwable {
108
109
if (mediaFields.isEmpty()) {
110
if (isEnum) {
111
- width = intParams.get(2).second;
112
- height = intParams.get(3).second;
113
- rotationAngle = intParams.get(4).second;
+ width = intParams.get(0).second;
+ height = intParams.get(1).second;
+ rotationAngle = intParams.get(2).second;
114
} else {
115
JSONObject mediaFields = (JSONObject) XposedHelpers.callMethod(param.args[0], "A00");
116
width = mediaFields.getInt("widthPx");
0 commit comments