| 166 conversation = g_object_new( |
166 conversation = g_object_new( |
| 167 PURPLE_TYPE_CONVERSATION, |
167 PURPLE_TYPE_CONVERSATION, |
| 168 "account", account, |
168 "account", account, |
| 169 "type", PURPLE_CONVERSATION_TYPE_CHANNEL, |
169 "type", PURPLE_CONVERSATION_TYPE_CHANNEL, |
| 170 "id", name, |
170 "id", name, |
| 171 "name", name, |
|
| 172 "online", TRUE, |
171 "online", TRUE, |
| 173 NULL); |
172 NULL); |
| 174 purple_conversation_manager_add(manager, conversation); |
173 purple_conversation_manager_add(manager, conversation); |
| 175 g_clear_object(&conversation); |
174 g_clear_object(&conversation); |
| 176 |
175 |