From d9c38d159241cebd168fe805f42e3e53aa08d216 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 29 Jan 2023 17:53:03 -0600 Subject: [PATCH] Update app bar progress indicator to not navigate to downloading on iOS --- components/widgets/DownloadProgressIndicator.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/widgets/DownloadProgressIndicator.vue b/components/widgets/DownloadProgressIndicator.vue index 8bcebae3..1036ef19 100644 --- a/components/widgets/DownloadProgressIndicator.vue +++ b/components/widgets/DownloadProgressIndicator.vue @@ -37,10 +37,14 @@ export default { if (!totalBytes) return 0 return Math.min(1, totalBytesDownloaded / totalBytes) + }, + isIos() { + return this.$platform === 'ios' } }, methods: { clickedIt() { + if (this.isIos) return // TODO: Implement on iOS this.$router.push('/downloading') }, onItemDownloadComplete(data) {