Skip to content

Commit

Permalink
Add TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhuaaa committed Nov 10, 2023
1 parent 82d1eb7 commit d88e3f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmtp_mls/src/groups/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ where
let mut receive_errors = Vec::<GroupReceiveError>::new();
for envelope in envelopes {
let mls_message_in = MlsMessageIn::tls_deserialize_exact(&envelope.message)
.expect("Could not deserialize message.");
.expect("Could not deserialize message."); // TODO

match mls_message_in.extract() {
MlsMessageInBody::PrivateMessage(message) => {
let decrypted_message = openmls_group
.process_message(&provider, message)
.expect("Could not parse message.");
.expect("Could not parse message."); // TODO
let mut sender_account_address = None;
let mut sender_installation_id = None;
if let Sender::Member(leaf_node_index) = decrypted_message.sender() {
Expand Down

0 comments on commit d88e3f4

Please sign in to comment.