Skip to content

Commit

Permalink
fix clippy v2
Browse files Browse the repository at this point in the history
  • Loading branch information
sai-harsha-vardhan committed Jan 22, 2025
1 parent 97c68f9 commit b5dae84
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/common_utils/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1408,6 +1408,9 @@ pub struct BrowserInformation {

/// The device model of the client
pub device_model: Option<String>,

/// Accept-language of the browser
pub accept_language: Option<String>,
}

#[cfg(feature = "v2")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ impl From<common_utils::types::BrowserInformation> for BrowserInformation {
os_type: value.os_type,
os_version: value.os_version,
device_model: value.device_model,
accept_language: value.accept_language,
}
}
}
Expand Down

0 comments on commit b5dae84

Please sign in to comment.