Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-02-22 01:03:37 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-02-22 01:25:34 +0300
commitc5150ebea3556b9cec1f99d23d5f8a876ff44da6 (patch)
tree37fbcc4d1f37d55acedc459fda35e60efc1be3a0 /omemo/backend/liteaxolotlstore.py
parent2e8c5a5a705ca328721da4af02d6f804c2359c6d (diff)
[omemo] Adapt KeyDialog
Diffstat (limited to 'omemo/backend/liteaxolotlstore.py')
-rw-r--r--omemo/backend/liteaxolotlstore.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/omemo/backend/liteaxolotlstore.py b/omemo/backend/liteaxolotlstore.py
index 70111aa..b9e21c1 100644
--- a/omemo/backend/liteaxolotlstore.py
+++ b/omemo/backend/liteaxolotlstore.py
@@ -309,6 +309,7 @@ class LiteAxolotlStore(AxolotlStore):
return result is not None
def deleteSession(self, recipientId, deviceId):
+ log.info('Delete session for %s %s', recipientId, deviceId)
query = "DELETE FROM sessions WHERE recipient_id = ? AND device_id = ?"
self._con.execute(query, (recipientId, deviceId))
self._con.commit()