Commit 382d87e8 by Kang Donghun

ユーザーメッセージ未読数追加修正

parent cf65e2d4
......@@ -1279,7 +1279,7 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
createdAtDay: messageTime.createdAtDay,
createdAtTime: messageTime.createdAtTime,
createdAtYear: message.insertDate.substring(0,4) + getLocalizedString('year') + ' ',
unreadCount: message.unreadCount,
unreadCount: message.unreadCount > 999 ? "999+" : message.unreadCount,
isOtherYear: isOtherYear,
isToday: isToday
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment