From 71b385a8067b0ec9d8af541e18466ab4cad9f1fc Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Thu, 13 Aug 2020 16:23:07 +0200 Subject: [PATCH] * All apps: fix drag and drop a file from FireFox download list not working --- api/js/Resumable/resumable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/Resumable/resumable.js b/api/js/Resumable/resumable.js index 6768a3ca92..7b1e1118c4 100644 --- a/api/js/Resumable/resumable.js +++ b/api/js/Resumable/resumable.js @@ -356,7 +356,7 @@ // bind all properties except for callback var entry = item; if('function' === typeof item.webkitGetAsEntry){ - entry = item.webkitGetAsEntry(); + entry = item.webkitGetAsEntry() || item; } return processItem.bind(null, entry, "", files); }),