Unquote title
This commit is contained in:
parent
a6b2b4981c
commit
29fb2321fe
@ -21,7 +21,7 @@ class ActivitiesModel(gtk.ListStore):
|
|||||||
|
|
||||||
def add_activity(self, buddy, service):
|
def add_activity(self, buddy, service):
|
||||||
(uid, stype) = service.get_activity_uid()
|
(uid, stype) = service.get_activity_uid()
|
||||||
title = service.get_one_property('Title')
|
title = urllib.unquote(service.get_one_property('Title'))
|
||||||
address = urllib.unquote(service.get_one_property('URI'))
|
address = urllib.unquote(service.get_one_property('URI'))
|
||||||
subtitle = 'Shared by %s' % buddy.get_nick_name()
|
subtitle = 'Shared by %s' % buddy.get_nick_name()
|
||||||
self.append([ title, address, subtitle, uid ])
|
self.append([ title, address, subtitle, uid ])
|
||||||
|
Loading…
Reference in New Issue
Block a user