ignore empty CONDUWUIT_VERSION_EXTRA for server version
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
29babebc4d
commit
c6e6eb0af3
1 changed files with 14 additions and 2 deletions
|
@ -197,9 +197,21 @@ impl fmt::Display for HtmlEscape<'_> {
|
||||||
/// git commit hashes.
|
/// git commit hashes.
|
||||||
pub(crate) fn conduwuit_version() -> String {
|
pub(crate) fn conduwuit_version() -> String {
|
||||||
match option_env!("CONDUWUIT_VERSION_EXTRA") {
|
match option_env!("CONDUWUIT_VERSION_EXTRA") {
|
||||||
Some(extra) => format!("{} ({})", env!("CARGO_PKG_VERSION"), extra),
|
Some(extra) => {
|
||||||
|
if extra.is_empty() {
|
||||||
|
env!("CARGO_PKG_VERSION").to_owned()
|
||||||
|
} else {
|
||||||
|
format!("{} ({})", env!("CARGO_PKG_VERSION"), extra)
|
||||||
|
}
|
||||||
|
},
|
||||||
None => match option_env!("CONDUIT_VERSION_EXTRA") {
|
None => match option_env!("CONDUIT_VERSION_EXTRA") {
|
||||||
Some(extra) => format!("{} ({})", env!("CARGO_PKG_VERSION"), extra),
|
Some(extra) => {
|
||||||
|
if extra.is_empty() {
|
||||||
|
env!("CARGO_PKG_VERSION").to_owned()
|
||||||
|
} else {
|
||||||
|
format!("{} ({})", env!("CARGO_PKG_VERSION"), extra)
|
||||||
|
}
|
||||||
|
},
|
||||||
None => env!("CARGO_PKG_VERSION").to_owned(),
|
None => env!("CARGO_PKG_VERSION").to_owned(),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue