Compare commits

...

1 Commits

Author SHA1 Message Date
Michael Sloan
d7d5d59318 Remove duplicate send of lsp::notification::WorkDoneProgressCancel 2025-01-13 11:29:23 -07:00

View File

@@ -7645,16 +7645,6 @@ impl LspStore {
)
.ok();
}
if progress.is_cancellable {
server
.notify::<lsp::notification::WorkDoneProgressCancel>(
WorkDoneProgressCancelParams {
token: lsp::NumberOrString::String(token.clone()),
},
)
.ok();
}
}
}
} else if let Some((client, project_id)) = self.upstream_client() {