fix: downloadUrl of file preview

pull/3728/head
Patrick Wang 2025-02-06 00:38:58 +08:00
parent 3d6c5152fe
commit a5285e51ca
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ const hasPrevious = computed(() => previousLink.value !== "");
const hasNext = computed(() => nextLink.value !== ""); const hasNext = computed(() => nextLink.value !== "");
const downloadUrl = computed(() => const downloadUrl = computed(() =>
fileStore.req ? api.getDownloadURL(fileStore.req, true) : "" fileStore.req ? api.getDownloadURL(fileStore.req, false) : ""
); );
const raw = computed(() => { const raw = computed(() => {