From 2e9021c2e73786e9045c0634c43efa86f18ac8de Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Sun, 4 Sep 2016 23:34:24 +0100 Subject: OlmSession.has_received_message I find myself wanting to know if an OlmSession is in the pre-key state or not, to help debugging at the application level. --- javascript/olm_post.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'javascript/olm_post.js') diff --git a/javascript/olm_post.js b/javascript/olm_post.js index 955d68d..6c99030 100644 --- a/javascript/olm_post.js +++ b/javascript/olm_post.js @@ -263,6 +263,13 @@ Session.prototype['session_id'] = restore_stack(function() { return Pointer_stringify(id_buffer); }); +Session.prototype['has_received_message'] = function() { + return session_method(Module['_olm_session_has_received_message'])( + this.ptr + ) ? true : false; +}; + + Session.prototype['matches_inbound'] = restore_stack(function( one_time_key_message ) { -- cgit v1.2.3