Skip to content

Commit

Permalink
fix: default value for server settings without webserver enabled. (#1683
Browse files Browse the repository at this point in the history
)
  • Loading branch information
icycodes authored and wsxiaoys committed Mar 20, 2024
1 parent 7672e09 commit f600ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/tabby/src/routes/server_setting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use tabby_common::api::server_setting::ServerSetting;
)]
pub async fn setting() -> Json<ServerSetting> {
let config = ServerSetting {
disable_client_side_telemetry: true,
disable_client_side_telemetry: false,
};
Json(config)
}

0 comments on commit f600ed5

Please sign in to comment.