mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
fix: TBC parseMailList returns true on empty mailbox for consistency
WotLK and Classic parsers return true on success regardless of mail count, but TBC returned !inbox.empty() which falsely signals parse failure on an empty mailbox, potentially causing callers to skip valid empty-mailbox state.
This commit is contained in:
parent
9750110436
commit
67e6c9a984
1 changed files with 1 additions and 1 deletions
|
|
@ -1228,7 +1228,7 @@ bool TbcPacketParsers::parseMailList(network::Packet& packet, std::vector<MailMe
|
|||
}
|
||||
}
|
||||
|
||||
return !inbox.empty();
|
||||
return true;
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue