Skip to content
Snippets Groups Projects
Commit 89361f61 authored by Daniel Brötzmann's avatar Daniel Brötzmann Committed by Philipp Hörist
Browse files

Logger: Make get_last_conversation_lines account-specific

parent 71a32e9f
No related branches found
No related tags found
No related merge requests found
......@@ -776,15 +776,18 @@ def get_last_conversation_lines(self, account, jid, pending):
KindConstant.ERROR])
jids = self._get_family_jids(account, jid)
account_id = self.get_account_id(account)
sql = '''
SELECT time, kind, message, error as "error [common_error]",
subject, additional_data, marker as "marker [marker]",
message_id
FROM logs NATURAL JOIN jids WHERE jid IN ({jids}) AND
kind IN ({kinds}) AND time > get_timeout()
FROM logs NATURAL JOIN jids WHERE jid IN ({jids})
AND account_id = {account_id} AND kind IN ({kinds})
AND time > get_timeout()
ORDER BY time DESC, log_line_id DESC LIMIT ? OFFSET ?
'''.format(jids=', '.join('?' * len(jids)),
account_id=account_id,
kinds=', '.join(kinds))
try:
......
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