fix(Core/Calendar): correct malformed mail subject when deleting a ca… (#26615)
This commit is contained in:
@@ -483,7 +483,7 @@ uint32 CalendarMgr::GetPlayerNumPending(ObjectGuid guid)
|
|||||||
std::string CalendarEvent::BuildCalendarMailSubject(ObjectGuid remover) const
|
std::string CalendarEvent::BuildCalendarMailSubject(ObjectGuid remover) const
|
||||||
{
|
{
|
||||||
std::ostringstream strm;
|
std::ostringstream strm;
|
||||||
strm << remover.ToString() << ':' << _title;
|
strm << remover.GetRawValue() << ':' << _title;
|
||||||
return strm.str();
|
return strm.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user