Skip to content
Snippets Groups Projects
Commit dfb9d926 authored by nkour's avatar nkour
Browse files

exclude kind gcstatus/status rather than ask for rest of statuses

parent 14c7d7f8
No related branches found
No related tags found
No related merge requests found
......@@ -335,12 +335,10 @@ class Logger:
SELECT log_line_id FROM logs
WHERE jid_id = %d
AND time BETWEEN %d AND %d
AND kind IN (%d, %d, %d, %d, %d)
AND kind NOT IN (%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))
constants.KIND_STATUS, constants.KIND_GCSTATUS))
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