From f8829783d241bab07d2144a4a8f5ba440d08b321 Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 30 May 2014 11:07:14 -0400 Subject: [PATCH] Queue the grouped nicks to update when NickCore::SetDisplay is called, since they serialize the display field --- src/nickcore.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/nickcore.cpp b/src/nickcore.cpp index c055491db..9c0e25f32 100644 --- a/src/nickcore.cpp +++ b/src/nickcore.cpp @@ -158,6 +158,10 @@ void NickCore::SetDisplay(const NickAlias *na) FOREACH_MOD(OnChangeCoreDisplay, (this, na->nick)); + /* this affects the serialized aliases */ + for (unsigned i = 0; i < aliases->size(); ++i) + aliases->at(i)->QueueUpdate(); + /* Remove the core from the list */ NickCoreList->erase(this->display);