fix: remove /download from attachments (#1067)
parent
97a6c7d399
commit
7750276554
|
|
@ -27,7 +27,7 @@ export default function AttachmentActions({ attachment }: Props) {
|
|||
|
||||
const url = client.generateFileURL(attachment);
|
||||
const open_url = `${url}/${filename}`;
|
||||
const download_url = url?.replace("attachments", "attachments/download");
|
||||
const download_url = url;
|
||||
|
||||
const filesize = determineFileSize(size);
|
||||
|
||||
|
|
|
|||
|
|
@ -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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue