Fixed a minor bug in the calculation of the date for room history request. Thanks Zash for the report.

This commit is contained in:
Anaël Verrier 2010-01-03 01:49:49 +01:00
parent 0699e2e3a1
commit 714b7d965d
1 changed files with 2 additions and 6 deletions

View File

@ -2017,12 +2017,8 @@ class Connection(CommonConnection, ConnectionHandlers):
if not change_nick:
t = p.setTag(common.xmpp.NS_MUC + ' x')
last_date = self.last_history_time[room_jid]
if last_date == 0:
last_date = time.time() - gajim.config.get(
'muc_restore_timeout') * 60
else:
last_date = min(last_date, time.time() - gajim.config.get(
'muc_restore_timeout') * 60)
last_date = max(self.last_history_time[room_jid],
time.time() - gajim.config.get('muc_restore_timeout') * 60)
last_date = time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime(last_date))
t.setTag('history', {'maxstanzas': gajim.config.get(
'muc_restore_lines'), 'since': last_date})