Update file-uploader.ts
Filters were not being used when adding a file to the queue. Updated to pass in arrayOfFilters instead of an empty array.
This commit is contained in:
@@ -44,7 +44,7 @@ export class FileUploader {
|
|||||||
list.map(some => {
|
list.map(some => {
|
||||||
let temp = new FileLikeObject(some);
|
let temp = new FileLikeObject(some);
|
||||||
|
|
||||||
if (this._isValidFile(temp, [], options)) {
|
if (this._isValidFile(temp, arrayOfFilters, options)) {
|
||||||
let fileItem = new FileItem(this, some, options);
|
let fileItem = new FileItem(this, some, options);
|
||||||
addedFileItems.push(fileItem);
|
addedFileItems.push(fileItem);
|
||||||
this.queue.push(fileItem);
|
this.queue.push(fileItem);
|
||||||
|
|||||||
Reference in New Issue
Block a user