Partially revert 699a12cc79

This commit is contained in:
Manav Rathi 2024-04-26 16:10:54 +05:30
parent 21ad409c61
commit 1c59a36c73
No known key found for this signature in database
2 changed files with 7 additions and 6 deletions

View file

@ -15,11 +15,7 @@ import { existsSync } from "node:fs";
import fs from "node:fs/promises";
import os from "node:os";
import path from "node:path";
import {
addAllowOriginHeader,
handleDownloads,
handleExternalLinks,
} from "./main/init";
import { handleDownloads, handleExternalLinks } from "./main/init";
import { attachFSWatchIPCHandlers, attachIPCHandlers } from "./main/ipc";
import log, { initLogging } from "./main/log";
import { createApplicationMenu, createTrayContextMenu } from "./main/menu";
@ -349,7 +345,11 @@ const main = () => {
registerStreamProtocol();
handleDownloads(mainWindow);
handleExternalLinks(mainWindow);
addAllowOriginHeader(mainWindow);
// TODO(MR): Remove or resurrect
// The commit that introduced this header override had the message
// "fix cors issue for uploads". Not sure what that means, so disabling
// it for now to see why exactly this is required.
// addAllowOriginHeader(mainWindow);
// Start loading the renderer
mainWindow.loadURL(rendererURL);

View file

@ -39,6 +39,7 @@ export const readStream = async (
});
const res = await fetch(req);
console.log(Object.fromEntries(res.headers.entries()));
if (!res.ok)
throw new Error(
`Failed to read stream from ${path}: HTTP ${res.status}`,