mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-10 20:41:59 +00:00
Fix incorrect data being assigned to os_name (#13064)
Release Notes: - N/A
This commit is contained in:
parent
0d43d484f6
commit
e40c49a143
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ impl Telemetry {
|
|||
state.installation_id = installation_id.map(|id| id.into());
|
||||
state.session_id = Some(session_id);
|
||||
state.app_version = release_channel::AppVersion::global(cx).to_string();
|
||||
state.os_name = os_version();
|
||||
state.os_name = os_name();
|
||||
|
||||
drop(state);
|
||||
|
||||
|
|
Loading…
Reference in a new issue