From f570a74b528616b2bc4839949d1ba3b755a8e4c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 26 Jul 2019 12:46:05 +0200 Subject: [PATCH] client: Disable the SqliteQueue database for now. --- pantalaimon/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pantalaimon/client.py b/pantalaimon/client.py index 210b6cf..c3e4f31 100644 --- a/pantalaimon/client.py +++ b/pantalaimon/client.py @@ -152,7 +152,7 @@ class PanClient(AsyncClient): proxy=None, store_class=None, ): - config = config or ClientConfig(store=store_class or SqliteQStore, store_name="pan.db") + config = config or ClientConfig(store=store_class or SqliteStore, store_name="pan.db") super().__init__(homeserver, user_id, device_id, store_path, config, ssl, proxy) index_dir = os.path.join(store_path, server_name, user_id)