From ee102f25e7beb630b0db92ad02cfe3c312e781a5 Mon Sep 17 00:00:00 2001 From: Deepjyoti Barman Date: Tue, 16 Jan 2024 23:23:48 +0530 Subject: [PATCH] Make downloading on mobile devices same as web --- src/components/DownloadButton.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/DownloadButton.vue b/src/components/DownloadButton.vue index 637d78e..3dbfa57 100644 --- a/src/components/DownloadButton.vue +++ b/src/components/DownloadButton.vue @@ -51,7 +51,8 @@ export default { new JsFileDownloader({ url: this.downloadDetails.url, process: this.showStatus, - filename: this.downloadDetails.filename + filename: this.downloadDetails.filename, + forceDesktopMode: true }) .then(() => { this.isDownloading = false;