Skip to content
Snippets Groups Projects
Commit fc5b1893 authored by zimio's avatar zimio
Browse files

Resolve GtkWarning: IA__gtk_tree_view_expand_row: assertion tree_view->priv->model != NULL

parent a4fc916a
No related branches found
No related tags found
No related merge requests found
......@@ -1822,7 +1822,8 @@ class GroupchatControl(ChatControlBase):
fake_jid)
if nick == self.nick: # we became online
self.got_connected()
self.list_treeview.expand_row((self.model.get_path(role_iter)), False)
if self.list_treeview.get_model():
self.list_treeview.expand_row((self.model.get_path(role_iter)), False)
if self.is_continued:
self.draw_banner_text()
return iter_
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment