Comment 6 for bug 436690

Revision history for this message
Ken VanDine (ken-vandine) wrote :

Odlin: Can you confirm this patch works?

=== modified file 'gwibber/microblog/laconica.py'
--- gwibber/microblog/laconica.py 2009-09-21 22:56:53 +0000
+++ gwibber/microblog/laconica.py 2009-10-02 01:57:24 +0000
@@ -215,5 +215,5 @@
   def send_thread(self, message, target):
     data = simplejson.loads(self.connect("/api/statuses/update.json",
       urllib.urlencode({"status": message,
- "in_reply_to_status_id": target.id, "source": "Gwibber"})))
+ "in_reply_to_status_id": str(target["id"]), "source": "Gwibber"})))
     return Message(self, data)