* 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
parent 31241227e1
commit ed943afdf5

View File

@ -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);
}),