Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Disable 5k youtube videos (#3288)
Browse files Browse the repository at this point in the history
Work around for #3193
  • Loading branch information
bluemarvin authored Apr 29, 2020
1 parent e1c08cc commit db22ea0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/src/main/assets/web_extensions/webcompat_youtube/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,10 @@ class YoutubeExtension {

// Get's the preferred video qualities for the current device.
getPreferredQualities() {
let all = ['hd2880', 'hd2160','hd1440', 'hd1080', 'hd720', 'large', 'medium'];
// Disable 5k video until issue can be resolved in Gecko Media Process
// see https://github.com/MozillaReality/FirefoxReality/issues/3193
// let all = ['hd2880', 'hd2160','hd1440', 'hd1080', 'hd720', 'large', 'medium'];
let all = ['hd2160','hd1440', 'hd1080', 'hd720', 'large', 'medium'];
return all;
}

Expand Down

0 comments on commit db22ea0

Please sign in to comment.