Skip to content

Commit

Permalink
We should use the same urls for debug and release since it could othe…
Browse files Browse the repository at this point in the history
…rwise cause confusion.
  • Loading branch information
Hinton committed Sep 13, 2023
1 parent c707fc9 commit 2bc63dd
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions crates/bitwarden/src/client/client_settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,6 @@ pub struct ClientSettings {
pub device_type: DeviceType,
}

#[cfg(debug_assertions)]
impl Default for ClientSettings {
fn default() -> Self {
Self {
identity_url: "https://localhost:8080/identity".into(),
api_url: "https://localhost:8080/api".into(),
user_agent: "Bitwarden Rust-SDK".into(),
device_type: DeviceType::SDK,
}
}
}

#[cfg(not(debug_assertions))]
impl Default for ClientSettings {
fn default() -> Self {
Self {
Expand Down

0 comments on commit 2bc63dd

Please sign in to comment.