mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
[Client] Fix bug
This commit is contained in:
parent
5daa689b0d
commit
158c9e2368
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ if (HTMLCollection.prototype.forEach === undefined) {
|
|||
if (FileList.prototype.forEach === undefined) {
|
||||
FileList.prototype.forEach = Array.prototype.forEach;
|
||||
}
|
||||
if (DataTransferItemList.prototype.forEach === undefined) {
|
||||
if (DataTransferItemList && DataTransferItemList.prototype.forEach === undefined) {
|
||||
DataTransferItemList.prototype.forEach = Array.prototype.forEach;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue