file check of message is modified

This commit is contained in:
richard-loafle 2020-02-17 14:41:15 +09:00
parent c0bfae71e2
commit f819b2f0a2

View File

@ -296,7 +296,7 @@ export class WriteComponent implements OnInit, OnDestroy, AfterViewInit {
const fakeMedia = await this.commonApiService.checkInvalidMediaMimeForFileTalk(
files
);
if (!fakeMedia.accept) {
if (!!fakeMedia) {
this.ngZone.run(() => {
this.snackBarService.openFromComponent<
AlertSnackbarComponent,
@ -309,10 +309,7 @@ export class WriteComponent implements OnInit, OnDestroy, AfterViewInit {
html: this.translateService.instant(
'common.file.errors.notAcceptableMime',
{
supporedType:
fakeMedia.rejected.length > 0
? fakeMedia.rejected.join(',')
: ''
supporedType: fakeMedia.join(',')
}
)
}