From 51840d82dc6799687873be9839b99738fcd931a6 Mon Sep 17 00:00:00 2001 From: pik Date: Mon, 17 Apr 2017 22:02:20 -0500 Subject: [PATCH] Return python int instead of c_uint32 for InboundGroupSession.decrypt message_index Signed-off-by: Alexander Maznev --- python/olm/inbound_group_session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/olm/inbound_group_session.py b/python/olm/inbound_group_session.py index be26f6c..286aedb 100644 --- a/python/olm/inbound_group_session.py +++ b/python/olm/inbound_group_session.py @@ -119,7 +119,7 @@ class InboundGroupSession(object): plaintext_buffer, max_plaintext_length, byref(message_index) ) - return plaintext_buffer.raw[:plaintext_length], message_index + return plaintext_buffer.raw[:plaintext_length], message_index.value def session_id(self): id_length = lib.olm_inbound_group_session_id_length(self.ptr)