Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Marta Mularczyk authored and tomleavy committed Mar 14, 2024
1 parent 23008bc commit 12cac58
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mls-rs/src/client_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,10 @@ where
let now_timestamp = 0;

#[cfg(test)]
let now_timestamp = self.settings.key_package_not_before.unwrap_or(now_timestamp);
let now_timestamp = self
.settings
.key_package_not_before
.unwrap_or(now_timestamp);

Lifetime {
not_before: now_timestamp,
Expand Down

0 comments on commit 12cac58

Please sign in to comment.