From b4323b651534ea8ffd573dd692f0fd4345e85a25 Mon Sep 17 00:00:00 2001 From: Nuno Date: Sat, 20 Nov 2021 01:35:25 +0100 Subject: [PATCH] Missing serialization (client can't load the icfg) --- ryzom/client/src/interface_v3/chat_window.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ryzom/client/src/interface_v3/chat_window.cpp b/ryzom/client/src/interface_v3/chat_window.cpp index 19e244979..9928b37b5 100644 --- a/ryzom/client/src/interface_v3/chat_window.cpp +++ b/ryzom/client/src/interface_v3/chat_window.cpp @@ -1026,6 +1026,11 @@ void CChatGroupWindow::loadFreeTeller(NLMISC::IStream &f) f.serial(sTitle); title = sTitle.toUtf8(); } + else + { + string sTitle; + f.serial(sTitle); + } CGroupContainer *pGC = createFreeTeller(title, "");