From b4323b651534ea8ffd573dd692f0fd4345e85a25 Mon Sep 17 00:00:00 2001 From: Nuno Date: Sat, 20 Nov 2021 01:35:25 +0100 Subject: [PATCH 1/3] 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, ""); From 4c4028822ee5d4f603d13baf98a707e3139af4c7 Mon Sep 17 00:00:00 2001 From: Nuno Date: Sat, 20 Nov 2021 01:35:25 +0100 Subject: [PATCH 2/3] 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, ""); From 7ce53abffeb0ae06f24f8fd455ac5e3e6466510f Mon Sep 17 00:00:00 2001 From: Nuno Date: Sat, 20 Nov 2021 01:41:30 +0100 Subject: [PATCH 3/3] Missing serialization (client can't load the icfg) --- ryzom/client/src/interface_v3/chat_window.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ryzom/client/src/interface_v3/chat_window.cpp b/ryzom/client/src/interface_v3/chat_window.cpp index 9928b37b5..226de8549 100644 --- a/ryzom/client/src/interface_v3/chat_window.cpp +++ b/ryzom/client/src/interface_v3/chat_window.cpp @@ -1027,10 +1027,7 @@ void CChatGroupWindow::loadFreeTeller(NLMISC::IStream &f) title = sTitle.toUtf8(); } else - { - string sTitle; - f.serial(sTitle); - } + f.serial(title); CGroupContainer *pGC = createFreeTeller(title, "");