Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions src/renderer/patches/downloadEventFile.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* SPDX-License-Identifier: GPL-3.0
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
* Copyright (c) 2024 Vendicated and Vencord contributors
*/

import { addPatch } from "./shared";

addPatch({
patches: [
{
find: "discord-event.ics",
replacement: {
match: /("discord-event\.ics".{0,10}?)window\.open/,
replace: "$1$self.downloadEvent"
}
}
],

downloadEvent(uri: string) {
const a = document.createElement("a");
a.href = uri;
a.download = "discord-event.ics";

document.body.appendChild(a);
a.click();
setImmediate(() => {
URL.revokeObjectURL(a.href);
document.body.removeChild(a);
});
}
});
1 change: 1 addition & 0 deletions src/renderer/patches/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/

// TODO: Possibly auto generate glob if we have more patches in the future
import "./downloadEventFile";
import "./enableNotificationsByDefault";
import "./platformClass";
import "./hideSwitchDevice";
Expand Down