mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
fix: main bug fix notification unread (#2266)
* fix: notification has counted unread counts bug fix. * fix: notification has counted unread counts bug fix.
This commit is contained in:
parent
285523751d
commit
1eef4013e2
@ -176,20 +176,15 @@ func (och *OnlineHistoryRedisConsumerHandler) getPushStorageMsgList(
|
|||||||
if v.message.Options != nil {
|
if v.message.Options != nil {
|
||||||
msg.Options = msgprocessor.NewMsgOptions()
|
msg.Options = msgprocessor.NewMsgOptions()
|
||||||
}
|
}
|
||||||
if options.IsOfflinePush() {
|
msg.Options = msgprocessor.WithOptions(msg.Options,
|
||||||
v.message.Options = msgprocessor.WithOptions(
|
msgprocessor.WithOfflinePush(options.IsOfflinePush()),
|
||||||
v.message.Options,
|
msgprocessor.WithUnreadCount(options.IsUnreadCount()),
|
||||||
msgprocessor.WithOfflinePush(false),
|
)
|
||||||
)
|
v.message.Options = msgprocessor.WithOptions(
|
||||||
msg.Options = msgprocessor.WithOptions(msg.Options, msgprocessor.WithOfflinePush(true))
|
v.message.Options,
|
||||||
}
|
msgprocessor.WithOfflinePush(false),
|
||||||
if options.IsUnreadCount() {
|
msgprocessor.WithUnreadCount(false),
|
||||||
v.message.Options = msgprocessor.WithOptions(
|
)
|
||||||
v.message.Options,
|
|
||||||
msgprocessor.WithUnreadCount(false),
|
|
||||||
)
|
|
||||||
msg.Options = msgprocessor.WithOptions(msg.Options, msgprocessor.WithUnreadCount(true))
|
|
||||||
}
|
|
||||||
storageMsgList = append(storageMsgList, msg)
|
storageMsgList = append(storageMsgList, msg)
|
||||||
}
|
}
|
||||||
if isStorage(v.message) {
|
if isStorage(v.message) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user