Return python int instead of c_uint32 for InboundGroupSession.decrypt message_index

Signed-off-by: Alexander Maznev <alexander.maznev@gmail.com>
poljar/cmake_sas
pik 2017-04-17 22:02:20 -05:00 committed by Richard van der Hoff
parent ed6ebb9a4d
commit 51840d82dc
1 changed files with 1 additions and 1 deletions

View File

@ -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)