From 064c4ebd2d952cf7f3409a4a7048b862e078da06 Mon Sep 17 00:00:00 2001 From: qiang Date: Wed, 23 Dec 2020 20:06:13 +0800 Subject: [PATCH] =?UTF-8?q?fix(App):=20=E4=BF=AE=E5=A4=8D=20iOS=2013.7=20?= =?UTF-8?q?=E8=AE=BE=E5=A4=87=20canvas=20=E7=BB=84=E4=BB=B6=E7=BB=98?= =?UTF-8?q?=E5=88=B6=E5=9B=BE=E5=83=8F=E5=BA=94=E7=94=A8=E5=B4=A9=E6=BA=83?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98=20question/113820?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/platforms/app-plus/helpers/file.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/platforms/app-plus/helpers/file.js b/src/platforms/app-plus/helpers/file.js index b2b122b13..7f464af4f 100644 --- a/src/platforms/app-plus/helpers/file.js +++ b/src/platforms/app-plus/helpers/file.js @@ -28,6 +28,7 @@ function download (url) { return new Promise(function (resolve, reject) { if (url.indexOf('http://') !== 0 && url.indexOf('https://') !== 0) { resolve(url) + return } plus.downloader.createDownload(url, { filename: '_doc/uniapp_temp/download/' -- GitLab