Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
retailify authored and jkuri committed Nov 9, 2017
1 parent a52cf20 commit d12aaca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ngx-uploader/classes/ngx-uploader.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export class NgUploaderService {
if (this.allContentTypesAllowed()) {
return true;
}
if (this.contentTypes.find((type: string) => type === mimetype ) != undefined) {
if (this.contentTypes.find((type: string) => type === mimetype ) !== undefined) {
return true;
}

Expand Down

0 comments on commit d12aaca

Please sign in to comment.