mirror of https://github.com/procxx/kepka.git
Fix marking scheduled out messages as read.
This commit is contained in:
parent
4c7f8a4bbb
commit
36d3dcd6d8
|
@ -1648,7 +1648,8 @@ std::optional<int> History::countStillUnreadLocal(MsgId readTillId) const {
|
||||||
for (const auto &block : blocks) {
|
for (const auto &block : blocks) {
|
||||||
for (const auto &message : block->messages) {
|
for (const auto &message : block->messages) {
|
||||||
const auto item = message->data();
|
const auto item = message->data();
|
||||||
if (item->out() || !IsServerMsgId(item->id)) {
|
if (!IsServerMsgId(item->id)
|
||||||
|
|| (item->out() && !item->isFromScheduled())) {
|
||||||
continue;
|
continue;
|
||||||
} else if (item->id > readTillId) {
|
} else if (item->id > readTillId) {
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -770,7 +770,9 @@ bool HistoryItem::showNotification() const {
|
||||||
if (channel && !channel->amIn()) {
|
if (channel && !channel->amIn()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return (out() || _history->peer->isSelf()) ? isFromScheduled() : unread();
|
return (out() || _history->peer->isSelf())
|
||||||
|
? isFromScheduled()
|
||||||
|
: unread();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryItem::markClientSideAsRead() {
|
void HistoryItem::markClientSideAsRead() {
|
||||||
|
|
Loading…
Reference in New Issue