tags 543771 patch
thanks
Hi
i looked into the code a bit and I think I solved the problem with this
simple patch:
--- gwibber/client.py 2009-08-28 09:28:19.000000000 +0200
+++ gwibber/client.py 2010-04-30 08:12:14.000000000 +0200
@@ -1067,7 +1067,7 @@
new_messages.reverse()
if len(new_messages) > 0:
for index, message in enumerate(new_messages):
- body = microblog.support.xml_escape(message.text)
+ body = message.text
image = hasattr(message, "image_path") and message.image_path
or ''
expire_timeout = 5000 + (index*2000) # default to 5 second
timeout and increase by 2 second for each notification
n = gintegration.notify(message.sender, body, image, ["reply",
"Reply"], expire_timeout)
--
Luca Bedogni