From 407371a0b684096b2bc059766137db40f62f3bbe Mon Sep 17 00:00:00 2001 From: Franklin Date: Thu, 24 Feb 2022 22:19:53 +0100 Subject: [PATCH] Refactor(testDownload): Download from cache is ok --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index c88ec94..81da25a 100644 --- a/index.html +++ b/index.html @@ -304,7 +304,7 @@ }; // load file avoiding the cache - req.open ('GET', btnEv.target.dataset.file + '?nocache=' + start, true); + req.open ('GET', btnEv.target.dataset.file, true); req.responseType = 'blob'; req.send (null); }