|
@@ -57,7 +57,7 @@ function isAllowedProtocolForMedia(url) {
|
|
}
|
|
}
|
|
const uri = u.getURL(url);
|
|
const uri = u.getURL(url);
|
|
return (
|
|
return (
|
|
- protocol === "http:" || (protocol === "https:" && ["https", "aesgcm"].includes(uri.protocol.toLowerCase()))
|
|
|
|
|
|
+ protocol === "http:" || (protocol === "https:" && ["https:", "aesgcm:"].includes(uri.protocol.toLowerCase()))
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
|