mirror of https://github.com/procxx/kepka.git
Ignore unread counts from deleted (support).
This commit is contained in:
parent
9d4d3cc5e3
commit
83919492d3
|
@ -1714,6 +1714,9 @@ void History::setUnreadCount(int newUnreadCount) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void History::setUnreadMark(bool unread) {
|
void History::setUnreadMark(bool unread) {
|
||||||
|
if (clearUnreadOnClientSide()) {
|
||||||
|
unread = false;
|
||||||
|
}
|
||||||
if (_unreadMark != unread) {
|
if (_unreadMark != unread) {
|
||||||
_unreadMark = unread;
|
_unreadMark = unread;
|
||||||
if (!_unreadCount || !*_unreadCount) {
|
if (!_unreadCount || !*_unreadCount) {
|
||||||
|
@ -2285,6 +2288,18 @@ void History::applyDialog(const MTPDdialog &data) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool History::clearUnreadOnClientSide() const {
|
||||||
|
if (!Auth().supportMode()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (const auto user = peer->asUser()) {
|
||||||
|
if (user->flags() & MTPDuser::Flag::f_deleted) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
bool History::skipUnreadUpdateForClientSideUnread() const {
|
bool History::skipUnreadUpdateForClientSideUnread() const {
|
||||||
if (peer->id != peerFromUser(ServiceUserId)) {
|
if (peer->id != peerFromUser(ServiceUserId)) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -2296,11 +2311,16 @@ bool History::skipUnreadUpdateForClientSideUnread() const {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool History::skipUnreadUpdate() const {
|
||||||
|
return skipUnreadUpdateForClientSideUnread()
|
||||||
|
|| clearUnreadOnClientSide();
|
||||||
|
}
|
||||||
|
|
||||||
void History::applyDialogFields(
|
void History::applyDialogFields(
|
||||||
int unreadCount,
|
int unreadCount,
|
||||||
MsgId maxInboxRead,
|
MsgId maxInboxRead,
|
||||||
MsgId maxOutboxRead) {
|
MsgId maxOutboxRead) {
|
||||||
if (!skipUnreadUpdateForClientSideUnread()) {
|
if (!skipUnreadUpdate()) {
|
||||||
setUnreadCount(unreadCount);
|
setUnreadCount(unreadCount);
|
||||||
setInboxReadTill(maxInboxRead);
|
setInboxReadTill(maxInboxRead);
|
||||||
}
|
}
|
||||||
|
@ -2320,6 +2340,12 @@ void History::applyDialogTopMessage(MsgId topMessageId) {
|
||||||
} else {
|
} else {
|
||||||
setLastMessage(nullptr);
|
setLastMessage(nullptr);
|
||||||
}
|
}
|
||||||
|
if (clearUnreadOnClientSide()) {
|
||||||
|
setUnreadCount(0);
|
||||||
|
if (const auto last = lastMessage()) {
|
||||||
|
setInboxReadTill(last->id);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void History::setInboxReadTill(MsgId upTo) {
|
void History::setInboxReadTill(MsgId upTo) {
|
||||||
|
|
|
@ -471,6 +471,8 @@ private:
|
||||||
|
|
||||||
void addItemsToLists(const std::vector<not_null<HistoryItem*>> &items);
|
void addItemsToLists(const std::vector<not_null<HistoryItem*>> &items);
|
||||||
void clearSendAction(not_null<UserData*> from);
|
void clearSendAction(not_null<UserData*> from);
|
||||||
|
bool clearUnreadOnClientSide() const;
|
||||||
|
bool skipUnreadUpdate() const;
|
||||||
bool skipUnreadUpdateForClientSideUnread() const;
|
bool skipUnreadUpdateForClientSideUnread() const;
|
||||||
|
|
||||||
HistoryItem *lastAvailableMessage() const;
|
HistoryItem *lastAvailableMessage() const;
|
||||||
|
|
Loading…
Reference in New Issue