Correct variable name in project type detection (#32835)
Release Notes: - N/A
This commit is contained in:
parent
2539d57ac7
commit
baf4abe101
1 changed files with 3 additions and 4 deletions
|
@ -404,10 +404,9 @@ impl Telemetry {
|
|||
.insert(worktree_id);
|
||||
}
|
||||
|
||||
let mut project_names_vec: Vec<String> =
|
||||
project_types.into_iter().map(String::from).collect();
|
||||
project_names_vec.sort();
|
||||
Some(project_names_vec)
|
||||
let mut project_types: Vec<_> = project_types.into_iter().map(String::from).collect();
|
||||
project_types.sort();
|
||||
Some(project_types)
|
||||
}
|
||||
|
||||
fn report_event(self: &Arc<Self>, event: Event) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue