Skip to content

Commit 75913ac

Browse files
authored
Merge pull request #272 from jolavillette/FixOutboxMessageCount
fix outbox message count doubled in UI
2 parents 00a6403 + bd3585b commit 75913ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/p3msgservice.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,7 @@ bool p3MsgService::getMessageSummaries(BoxName box,std::list<MsgInfoSummary>& ms
11841184
msgList.push_back(mis);
11851185
}
11861186

1187-
if(box==BoxName::BOX_ALL || box == BoxName::BOX_OUTBOX)
1187+
if(box == BoxName::BOX_OUTBOX)
11881188
for(const auto& mit:msgOutgoing) // Now special process for outgoing, since it's references with their own Ids
11891189
{
11901190
auto mref = mSentMessages.find(mit.first);

0 commit comments

Comments
 (0)