Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
codabrink committed Dec 18, 2024
1 parent 865506d commit 1438028
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmtp_mls/src/storage/encrypted_store/group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl StoredGroup {
added_by_inbox_id,
welcome_id: None,
rotated_at_ns: 0,
dm_id: dm_id,
dm_id,
last_message_ns: now_ns(),
}
}
Expand Down Expand Up @@ -629,7 +629,7 @@ pub(crate) mod tests {
let id = rand_vec::<24>();
let created_at_ns = now_ns();
let membership_state = state.unwrap_or(GroupMembershipState::Allowed);
let dm_inbox_id = Some("placeholder_inbox_id".to_string());
let dm_inbox_id = Some(DmId::from_ids(["placeholder_inbox_id"; 2]));
StoredGroup::new(
id,
created_at_ns,
Expand Down

0 comments on commit 1438028

Please sign in to comment.