diff --git a/lib/util/platform.js b/lib/util/platform.js index 4504b2b56d..86f7847199 100644 --- a/lib/util/platform.js +++ b/lib/util/platform.js @@ -536,6 +536,10 @@ shaka.util.Platform = class { Platform.isWebOS4() || Platform.isWebOS5()) { return false; } + // See: https://chromium-review.googlesource.com/c/chromium/src/+/4577759 + if (Platform.isWindows() && Platform.isEdge()) { + return false; + } return true; }