Skip to content

Commit

Permalink
fix(pd): use correct versions in err msg
Browse files Browse the repository at this point in the history
  • Loading branch information
conorsch committed Nov 14, 2024
1 parent 5473b2d commit e490107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/app/src/app_version/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fn check_version(ctx: CheckContext, expected: u64, found: Option<u64>) -> anyhow
match ctx {
CheckContext::Running => {
let expected_name = version_to_software_version(expected);
let found_name = version_to_software_version(expected);
let found_name = version_to_software_version(found);
let mut error = String::new();
error.push_str("app version mismatch:\n");
write!(
Expand Down

0 comments on commit e490107

Please sign in to comment.