Update crates/rust-analyzer/src/handlers.rs

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
David Barsky 2023-03-10 10:35:47 -05:00
parent 68d3eaead4
commit 7a6e1119af

View File

@ -63,8 +63,8 @@ pub(crate) fn handle_add_project(
let config = Arc::make_mut(&mut state.config);
config.add_linked_projects(params.project);
state.fetch_workspaces_queue.request_op("reload workspace request".to_string());
state.fetch_build_data_queue.request_op("reload workspace request".to_string());
state.fetch_workspaces_queue.request_op("linked projects changed".to_string());
state.fetch_build_data_queue.request_op("linked projects changed".to_string());
Ok(())
}