bug fix :: 대화방 알림 토글시 방제목이 없을 경우 서버에서 방번호로 입력하도록 되어 있는 버그

>> 우회하기 위해 방제목이 없을 경우 blank 하나 넣어서 전송하도록 수정.
This commit is contained in:
leejh 2019-10-23 17:26:04 +09:00
parent 72c704e9af
commit 69ab6e5d3b

View File

@ -142,7 +142,10 @@ export class Effects {
update({
req: {
roomSeq: roomInfo.roomSeq,
roomName: roomInfo.roomName,
roomName:
roomInfo.roomName.trim().length === 0
? ' '
: roomInfo.roomName.trim(),
receiveAlarm: !roomInfo.receiveAlarm,
syncAll: false
}