Commit 01f56d5c authored by Dan Pascu's avatar Dan Pascu

Fixed partitioning token

parent 569ee2b4
...@@ -374,7 +374,7 @@ class PresenceSubscriptionHandler(object): ...@@ -374,7 +374,7 @@ class PresenceSubscriptionHandler(object):
icon_url = unicode(service.icon) if service.icon else None icon_url = unicode(service.icon) if service.icon else None
if icon_url: if icon_url:
url, token, icon_hash = icon_url.partition('blink-icon') url, token, icon_hash = icon_url.partition('#blink-icon')
if token: if token:
if contact.icon and icon_hash == contact.icon.etag: if contact.icon and icon_hash == contact.icon.etag:
# Fast path, icon hasn't changed # Fast path, icon hasn't changed
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment