Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix downloading event ICS files #953

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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