Bug 1632947 - Fix to hangouts microphone intervention.r=webcompat-reviewers,twisniewski

Differential Revision: https://phabricator.services.mozilla.com/D72768
This commit is contained in:
Ksenia Berezina 2020-04-27 23:27:54 +00:00
Родитель cb08ac977b
Коммит e9d728c40f
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -18,8 +18,9 @@ console.info(
);
const isHangoutsSrc = src => {
const url = new URL(src);
return url.host === "hangouts.google.com" && url.pathname.includes("blank");
return (
src.startsWith("https://hangouts.google.com/") && src.includes("blank")
);
};
const orig = Object.getOwnPropertyDescriptor(

Просмотреть файл

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Web Compat",
"description": "Urgent post-release fixes for web compatibility.",
"version": "10.1.0",
"version": "10.1.1",
"applications": {
"gecko": {