Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Nov 12, 2024
1 parent 640de0e commit 9d5a099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/tauri-cli/src/info/env_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ fn de_and_session() -> String {
let session = std::env::var("XDG_SESSION_TYPE");
format!(
" ({} on {})",
de.unwrap_or("Unknown DE"),
session.unwrap_or("Unknown Session")
de.as_str().unwrap_or("Unknown DE"),
session.as_str().unwrap_or("Unknown Session")
)
};

Expand Down

0 comments on commit 9d5a099

Please sign in to comment.