bugfix :: 동영상 파일 업로드 시 썸네일 만들어지지 않아도 업로드 될 수 있도록 수정.
This commit is contained in:
parent
52c70097fb
commit
51ac5facfe
|
@ -1159,7 +1159,11 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
|
|||
'wmv'
|
||||
].indexOf(FileUtil.getExtension(fileUploadItem.file.name))
|
||||
) {
|
||||
thumbnail = await FileUtil.thumbnail(fileUploadItem.file);
|
||||
try {
|
||||
thumbnail = await FileUtil.thumbnail(fileUploadItem.file);
|
||||
} catch (err) {
|
||||
this.logger.error('video thumbnail error.', err);
|
||||
}
|
||||
this.logger.debug('thumbnail', thumbnail);
|
||||
}
|
||||
|
||||
|
|
|
@ -266,7 +266,8 @@ export class FileUtil {
|
|||
video.muted = true;
|
||||
// tslint:disable-next-line: no-string-literal
|
||||
video['playsInline'] = true;
|
||||
video.play();
|
||||
video.crossOrigin = 'anonymous';
|
||||
video.play().catch(e => reject(e));
|
||||
};
|
||||
fileReader.onerror = (event: ProgressEvent) => {
|
||||
fileReader.abort();
|
||||
|
|
Loading…
Reference in New Issue
Block a user