Fix handling of audio files in account media gallery (#11629)
Fixes #11627
This commit is contained in:
parent
97af209c31
commit
b48c7ee059
2 changed files with 7 additions and 1 deletions
|
@ -100,7 +100,7 @@ class AccountGallery extends ImmutablePureComponent {
|
|||
}
|
||||
|
||||
handleOpenMedia = attachment => {
|
||||
if (attachment.get('type') === 'video') {
|
||||
if (['video', 'audio'].includes(attachment.get('type'))) {
|
||||
this.props.dispatch(openModal('VIDEO', { media: attachment, status: attachment.get('status') }));
|
||||
} else {
|
||||
const media = attachment.getIn(['status', 'media_attachments']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue