Skip to content

Commit

Permalink
fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Jul 11, 2024
1 parent 59c9ae0 commit 474b736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/src-tauri/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub fn setup(app: &App) -> Result<(), Box<dyn std::error::Error>> {
log::debug!(
"CPU Features\n{}",
crate::cmd::get_x86_features()
.map(|v| serde_json::to_string(&v)?)
.map(|v| serde_json::to_string(&v).unwrap_or_default())
.unwrap_or_default()
);

Expand Down

0 comments on commit 474b736

Please sign in to comment.