# HG changeset patch # User Sadrul Habib Chowdhury # Date 1188040706 0 # Node ID c1c260d413652f1fb9be66dcae0288bc60f5a2be # Parent 6df41719037c65f18feb13f417c505d3402ab43a The conversation history is in a reversed list. diff -r 6df41719037c -r c1c260d41365 finch/libgnt/pygnt/dbus-gnt --- a/finch/libgnt/pygnt/dbus-gnt Sat Aug 25 10:33:00 2007 +0000 +++ b/finch/libgnt/pygnt/dbus-gnt Sat Aug 25 11:18:26 2007 +0000 @@ -110,6 +110,7 @@ if history: msgs = purple.PurpleConversationGetMessageHistory(conv) + msgs.reverse() for msg in msgs: who = purple.PurpleConversationMessageGetSender(msg) what = purple.PurpleConversationMessageGetMessage(msg)