Skip to content
Snippets Groups Projects
Commit 14c7d7f8 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

when we ask if date has message, don't take into account status messages

parent 2887e8d1
No related branches found
No related tags found
No related merge requests found
......@@ -335,9 +335,12 @@ class Logger:
SELECT log_line_id FROM logs
WHERE jid_id = %d
AND time BETWEEN %d AND %d
ORDER BY time LIMIT 1
''' % (jid_id, start_of_day, last_second_of_day))
AND kind IN (%d, %d, %d, %d, %d)
LIMIT 1
''' % (jid_id, start_of_day, last_second_of_day,
constants.KIND_SINGLE_MSG_RECV, constants.KIND_CHAT_MSG_RECV,
constants.KIND_SINGLE_MSG_SENT, constants.KIND_CHAT_MSG_SENT,
constants.KIND_GC_MSG))
results = cur.fetchone()
if results:
return True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment