Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
gajim
gajim
Commits
ead6d4f2
Commit
ead6d4f2
authored
Jun 22, 2019
by
Philipp Hörist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix is_groupchat call
is_groupchat is now a property Fixes
#9742
parent
35769b38
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gajim/gtk/start_chat.py
gajim/gtk/start_chat.py
+1
-1
No files found.
gajim/gtk/start_chat.py
View file @
ead6d4f2
...
...
@@ -98,7 +98,7 @@ def add_contacts(self):
for
jid
in
app
.
contacts
.
get_jid_list
(
account
):
contact
=
app
.
contacts
.
get_contact_with_highest_priority
(
account
,
jid
)
if
contact
.
is_groupchat
()
:
if
contact
.
is_groupchat
:
continue
row
=
ContactRow
(
account
,
contact
,
jid
,
contact
.
get_shown_name
(),
show_account
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment