* All apps: fix drag and drop a file from FireFox download list not working

This commit is contained in:
Hadi Nategh 2020-08-13 16:23:07 +02:00 committed by Ralf Becker
parent d3f01ccb61
commit 71b385a806

View File

@ -356,7 +356,7 @@
// bind all properties except for callback // bind all properties except for callback
var entry = item; var entry = item;
if('function' === typeof item.webkitGetAsEntry){ if('function' === typeof item.webkitGetAsEntry){
entry = item.webkitGetAsEntry(); entry = item.webkitGetAsEntry() || item;
} }
return processItem.bind(null, entry, "", files); return processItem.bind(null, entry, "", files);
}), }),