Skip to content

Commit

Permalink
[android]: fix local video degradation event sent from native code
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliaGrigorieva committed Dec 18, 2023
1 parent 2ac01f3 commit 801304d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -688,8 +688,8 @@ public void onLocalVideoDegradation(@NonNull ICall call, @NonNull QualityIssueLe
actualSizeStruct.put("height", actualHeight);

Map<String, Object> targetSizeStruct = new HashMap<>();
actualSizeStruct.put("width", targetWidth);
actualSizeStruct.put("height", targetHeight);
targetSizeStruct.put("width", targetWidth);
targetSizeStruct.put("height", targetHeight);

event.put("event", "VIQualityIssueTypeLocalVideoDegradation");
event.put("actualSizeStruct", actualSizeStruct);
Expand Down

0 comments on commit 801304d

Please sign in to comment.