Skip to content

Commit

Permalink
Add fix to support 1.2.0 on v4 (#1761)
Browse files Browse the repository at this point in the history
Co-authored-by: benedettadavico <[email protected]>
  • Loading branch information
octol and benedettadavico authored Dec 10, 2024
1 parent 79352d4 commit 4048e3a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nym-vpn-core/crates/nym-authenticator-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,9 @@ impl From<semver::Version> for AuthenticatorVersion {
if semver.minor == 1 && semver.patch >= 10 {
return Self::V3;
}
if semver.minor >= 1 {
return Self::V4;
}
Self::UNKNOWN
}
}
Expand Down

0 comments on commit 4048e3a

Please sign in to comment.