Skip to content

Commit

Permalink
fix falsy mimetype access
Browse files Browse the repository at this point in the history
  • Loading branch information
fschade committed Nov 8, 2021
1 parent 6ced5fc commit efd445b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-app-files/src/mixins/fileActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default {
if (
mimeType === undefined ||
!get(this, 'capabilities.files.app_providers') ||
!this.mimeTypes.length
!get(this, 'mimeTypes', []).length
) {
return []
}
Expand Down

0 comments on commit efd445b

Please sign in to comment.