diff src/memory/memory.py @ 1221:5e5661ab5c81

memory: getHistory with limit=0 now returns an empty list, use limit=None to return all messages
author souliane <souliane@mailoo.org>
date Fri, 03 Oct 2014 12:43:59 +0200
parents d9c399ec5dd9
children e6e0ea4dc835
line wrap: on
line diff
--- a/src/memory/memory.py	Fri Oct 03 12:27:43 2014 +0200
+++ b/src/memory/memory.py	Fri Oct 03 12:43:59 2014 +0200
@@ -350,7 +350,7 @@
             extra = {}
         return self.storage.addToHistory(from_jid, to_jid, message, type_, extra, timestamp, profile)
 
-    def getHistory(self, from_jid, to_jid, limit=0, between=True, profile=C.PROF_KEY_NONE):
+    def getHistory(self, from_jid, to_jid, limit=None, between=True, profile=C.PROF_KEY_NONE):
         assert profile != C.PROF_KEY_NONE
         return self.storage.getHistory(jid.JID(from_jid), jid.JID(to_jid), limit, between, profile)