aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/patcher.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/patcher.ts b/src/patcher.ts
index 8e28fd1..a1aba2d 100644
--- a/src/patcher.ts
+++ b/src/patcher.ts
@@ -57,6 +57,11 @@ electron.app.whenReady().then(() => {
if (responseHeaders) {
delete responseHeaders["content-security-policy-report-only"];
delete responseHeaders["content-security-policy"];
+
+ // Fix hosts that don't properly set the content type, such as
+ // raw.githubusercontent.com
+ if (url.endsWith(".css"))
+ responseHeaders["content-type"] = ["text/css"];
}
cb({ cancel: false, responseHeaders });
});