From 7a5c0c9c0e3bca66ec08a37b2d89cf4986fe7841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Tue, 2 Oct 2018 17:27:29 +0200 Subject: [PATCH] commands: Use the client verify commands instead of the olm ones. --- matrix/commands.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/matrix/commands.py b/matrix/commands.py index d24486d..299e2d0 100644 --- a/matrix/commands.py +++ b/matrix/commands.py @@ -514,7 +514,7 @@ def olm_verify_command(server, args): "Verified", "unverified", "join", - server.client.olm.verify_device + server.client.verify_device ) @@ -525,7 +525,7 @@ def olm_unverify_command(server, args): "Unverified", "verified", "quit", - server.client.olm.unverify_device + server.client.unverify_device ) @@ -536,7 +536,7 @@ def olm_blacklist_command(server, args): "Blacklisted", "unblacklisted", "join", - server.client.olm.blacklist_device + server.client.blacklist_device ) @@ -547,7 +547,7 @@ def olm_unblacklist_command(server, args): "Unblacklisted", "blacklisted", "join", - server.client.olm.unblacklist_device + server.client.unblacklist_device )