Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b80bfcbd authored by Manish Singh's avatar Manish Singh
Browse files

Return mUnsupportedVideoMimeTypes from the getter

Currently we are returning mSupportedVideoMimeTypes from
getUnsupportedVideoMimeTypes.

BUG=176993974, 158466651
Test: manual

Change-Id: Ifc2d136d18488e827eee43fed7f32bb8868c51d5
parent c9805723
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -237,7 +237,7 @@ public final class ApplicationMediaCapabilities implements Parcelable {
     */
    @NonNull
    public List<String> getUnsupportedVideoMimeTypes() {
        return new ArrayList<>(mSupportedVideoMimeTypes);
        return new ArrayList<>(mUnsupportedVideoMimeTypes);
    }

    /*