스티커 한번 출력 후 계속 출력되는 문제 수정.

This commit is contained in:
leejinho 2020-01-06 10:12:49 +09:00
parent 0830b017df
commit 72733b966a

View File

@ -712,6 +712,7 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
if (!!this.selectedSticker) {
this.isShowStickerSelector = false;
this.setStickerHistory(this.selectedSticker);
this.selectedSticker = null;
}
} else {
this.logger.error(res);
@ -760,6 +761,7 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
);
this.isShowStickerSelector = false;
this.setStickerHistory(this.selectedSticker);
this.selectedSticker = null;
} else if (
message.trim().length >
environment.productConfig.CommonSetting.masstextLength
@ -860,7 +862,10 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
if (!!result && result.length > 0) {
this.saveFile(value, result);
} else {
this.snackBarService.open('저장경로 지정에 실패하였습니다.', '확인');
this.snackBarService.open(
'저장경로 지정에 실패하였습니다.',
'확인'
);
}
})
.catch(reason => {
@ -923,11 +928,17 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
}
);
} else {
this.snackBarService.open('파일 저장에 실패하였습니다.', '확인');
this.snackBarService.open(
'파일 저장에 실패하였습니다.',
'확인'
);
}
})
.catch(reason => {
this.snackBarService.open('파일 저장에 실패하였습니다.', '확인');
this.snackBarService.open(
'파일 저장에 실패하였습니다.',
'확인'
);
});
})
.catch(reason => {