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