Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Maxime Buquet
slixmpp
Commits
ef2f5d29
Commit
ef2f5d29
authored
Apr 20, 2014
by
Lance Stout
Browse files
Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop
parents
62671e0f
93869f77
Changes
1
Hide whitespace changes
Inline
Side-by-side
sleekxmpp/plugins/xep_0153/vcard_avatar.py
View file @
ef2f5d29
...
...
@@ -124,10 +124,12 @@ class XEP_0153(BasePlugin):
log
.
debug
(
'Could not retrieve vCard for %s'
%
jid
)
def
_recv_presence
(
self
,
pres
):
if
pres
[
'muc'
][
'affiliation'
]:
# Don't process vCard avatars for MUC occupants
# since they all share the same bare JID.
return
try
:
if
pres
[
'muc'
][
'affiliation'
]:
# Don't process vCard avatars for MUC occupants
# since they all share the same bare JID.
return
except
:
pass
if
not
pres
.
match
(
'presence/vcard_temp_update'
):
self
.
api
[
'set_hash'
](
pres
[
'from'
],
args
=
None
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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