aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--protocols/purple/purple.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c
index 97d2a4ae..118a62ad 100644
--- a/protocols/purple/purple.c
+++ b/protocols/purple/purple.c
@@ -831,6 +831,12 @@ void prplcb_conv_new( PurpleConversation *conv )
struct groupchat *gc;
gc = imcb_chat_new( ic, conv->name );
+ if( conv->title != NULL )
+ {
+ imcb_chat_name_hint( gc, conv->title );
+ imcb_chat_topic( gc, NULL, conv->title, 0 );
+ }
+
conv->ui_data = gc;
gc->data = conv;