diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-06-15 17:47:22 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-06-15 17:47:22 +0100 |
commit | 026e4394bb333e978a37f5821f0a1c3dca6acb1d (patch) | |
tree | a06da10956a3757f6f0da3e7126777c1c2da81ea /src/session.cpp | |
parent | 6fe3b7eb73fb11e1cba27b28add5b14430b66259 (diff) |
Implement creating a new account
Diffstat (limited to 'src/session.cpp')
-rw-r--r-- | src/session.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/session.cpp b/src/session.cpp index db8097f..0582d56 100644 --- a/src/session.cpp +++ b/src/session.cpp @@ -190,7 +190,7 @@ axolotl::MessageType axolotl::Session::encrypt_message_type() { if (received_message) { return axolotl::MessageType::MESSAGE; } else { - return axolotl::MessageType::PRE_KEY_MESSAGE; + return axolotl::MessageType::PRE_KEY; } } |