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:
Kelsi 2026-03-17 11:58:20 -07:00
parent 9750110436
commit 67e6c9a984

View file

@ -1228,7 +1228,7 @@ bool TbcPacketParsers::parseMailList(network::Packet& packet, std::vector<MailMe
}
}
return !inbox.empty();
return true;
}
// ============================================================================