fix: remove /download from attachments (#1067)

This commit is contained in:
Declan Chidlow
2025-01-29 21:39:17 +08:00
committed by GitHub
parent 97a6c7d399
commit 7750276554
2 changed files with 3 additions and 7 deletions

View File

@@ -288,11 +288,7 @@ export default function ContextMenus() {
window.open(
// ! FIXME: do this from revolt.js
client
.generateFileURL(data.attachment)
?.replace(
"attachments",
"attachments/download",
),
.generateFileURL(data.attachment),
isFirefox || window.native ? "_blank" : "_self",
);
}
@@ -1293,4 +1289,4 @@ export default function ContextMenus() {
<CMNotifications />
</>
);
}
}