Skip to content
Snippets Groups Projects
Commit a51b0080 authored by syuilo's avatar syuilo
Browse files

[Client] Fix bug

parent f7e6bd55
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ if (HTMLCollection.prototype.forEach === undefined) { ...@@ -39,7 +39,7 @@ if (HTMLCollection.prototype.forEach === undefined) {
if (FileList.prototype.forEach === undefined) { if (FileList.prototype.forEach === undefined) {
FileList.prototype.forEach = Array.prototype.forEach; FileList.prototype.forEach = Array.prototype.forEach;
} }
if (DataTransferItemList.prototype.forEach === undefined) { if (DataTransferItemList && DataTransferItemList.prototype.forEach === undefined) {
DataTransferItemList.prototype.forEach = Array.prototype.forEach; DataTransferItemList.prototype.forEach = Array.prototype.forEach;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment