diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-09-13 17:41:55 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-09-13 17:51:02 +0100 |
commit | a628ef41bd5b860b89a3e2e29df56a461e85fa00 (patch) | |
tree | 43e5f7e31a48bfdc269438ef176e339faff76d6b /javascript/olm_inbound_group_session.js | |
parent | e0b51971b7bc4cf3bb56b080f5f54296b58b3f0c (diff) |
Remove the messsage index from olm_init_inbound_group_session since it is read from the session_key
Diffstat (limited to 'javascript/olm_inbound_group_session.js')
-rw-r--r-- | javascript/olm_inbound_group_session.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript/olm_inbound_group_session.js b/javascript/olm_inbound_group_session.js index 9722c31..7e07b01 100644 --- a/javascript/olm_inbound_group_session.js +++ b/javascript/olm_inbound_group_session.js @@ -52,12 +52,12 @@ InboundGroupSession.prototype['unpickle'] = restore_stack(function(key, pickle) ); }); -InboundGroupSession.prototype['create'] = restore_stack(function(message_index, session_key) { +InboundGroupSession.prototype['create'] = restore_stack(function(session_key) { var key_array = array_from_string(session_key); var key_buffer = stack(key_array); inbound_group_session_method(Module['_olm_init_inbound_group_session'])( - this.ptr, message_index, key_buffer, key_array.length + this.ptr, key_buffer, key_array.length ); }); |