Skip to content

Commit

Permalink
Merge branch 'patch-1' of git://github.com/bensgroi/ng2-file-upload i…
Browse files Browse the repository at this point in the history
…nto bensgroi-patch-1

Conflicts:
	components/file-upload/file-uploader.class.ts
  • Loading branch information
valorkin committed May 11, 2016
2 parents 6538dfa + a122d67 commit 9d8de6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/file-upload/file-uploader.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export class FileUploader {
}

private _queueLimitFilter():boolean {
return this.queue.length < this.queueLimit;
return this.queueLimit === undefined || this.queue.length < this.queueLimit;
}

private _isValidFile(file:any, filters:any, options:any):boolean {
Expand Down

0 comments on commit 9d8de6c

Please sign in to comment.