fix(Core/Calendar): correct malformed mail subject when deleting a ca… (#26615)
This commit is contained in:
parent
f8b4e180a5
commit
34a8bd6655
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue