Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lmuntaner committed Jan 14, 2025
1 parent 2bd3b0f commit 721549e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internet_identity/src/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ async fn archive_change_required(archive_canister: Principal, config: &ArchiveCo

if !status
.init
.map_or(false, |init| init == config_to_init(config))
.is_some_and(|init| init == config_to_init(config))
{
// the init arguments have changed --> deployment required regardless of wasm hash
return true;
Expand Down

0 comments on commit 721549e

Please sign in to comment.