fix(Core/Calendar): correct malformed mail subject when deleting a ca… (#26615)

This commit is contained in:
Kitzunu
2026-07-15 05:13:13 +02:00
committed by GitHub
parent f8b4e180a5
commit 34a8bd6655

View File

@@ -483,7 +483,7 @@ uint32 CalendarMgr::GetPlayerNumPending(ObjectGuid guid)
std::string CalendarEvent::BuildCalendarMailSubject(ObjectGuid remover) const
{
std::ostringstream strm;
strm << remover.ToString() << ':' << _title;
strm << remover.GetRawValue() << ':' << _title;
return strm.str();
}