Extension sometimes fails to run when custom CSS is injected #4376
cheap-glitch posted onGitHub
<!-- Thanks for reporting a bug! ⛰ Make sure the bug is caused by Refined GitHub. Try disabling the extension first. Show us the bug and help us replicate it, include: 1. A REAL URL where the bug appears. If it happens on a private repo, find an equivalent public URL. 2. A screenshot/video/gif of the issue, if it’s visual. 3. Any related errors in the browser’s console, if any. -->
I've recently added some custom CSS to hide the "Explore repositories" sidebar on the dashboard. This makes the extension fail regularly with the following error (Firefox 88.0.1, RGH 21.5.19):
TypeError: document.head is null refined-github.js:1913:30
The line in question: https://github.com/sindresorhus/refined-github/blob/83f233677157d21fb6ae11958fa45aa7ee99d65a/source/features/index.tsx#L91
Since this only happens (afaik) when opening new tabs (regardless of the URL), I'm guessing the extension tries to inject the CSS before the <head>
exists and thus execution stops. This was probably introduced by #4352.
Edit: can confirm the bug goes away when removing the custom CSS.