mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
fix another NPE; apparently some stylesheets don't have href attributes (wtf?)
This commit is contained in:
parent
3da76192a1
commit
bb0051f24f
1 changed files with 3 additions and 1 deletions
|
@ -82,7 +82,9 @@ function calcCssFixups() {
|
|||
// privacybadger inserting its own stylesheet in there with a
|
||||
// resource:// URI or something which results in a XSS error.
|
||||
// See also #vector:matrix.org/$145357669685386ebCfr:matrix.org
|
||||
if (!ss.href.endsWith("/bundle.css")) continue;
|
||||
// ...except some browsers apparently return stylesheets without
|
||||
// hrefs, which we have no choice but ignore right now
|
||||
if (ss.href && !ss.href.endsWith("/bundle.css")) continue;
|
||||
if (!ss.cssRules) continue;
|
||||
for (var j = 0; j < ss.cssRules.length; j++) {
|
||||
var rule = ss.cssRules[j];
|
||||
|
|
Loading…
Reference in a new issue