Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Avoid overwriting the max resolution requested by the tile-view. (…
…#7320) Part of [1] replaces a `setPreferredVideoQuality` call with a `setMaxReceiverVideoQuality` call. The change was part of a bigger changeset that adds logic that tries to adjust the max based on reduced ui turned on or off and allow to set prefered through the config. However, by calling `setMaxReceiverVideoQuality` instead of `setPreferredVideoQuality`, the new feature overrides the lower resolution requested by tile-view earlier in some occasions. This PR reverts back to using `setPreferredVideoQuality` instead of `setMaxReceiverVideoQuality` as this achieves the same result without overwriting the max set by the tile-view. NOTE that this is a quick-fix and all the handling related to setting the receive resolution will be reworked soon. [1]: 7d51373
- Loading branch information