Skip to content

Commit

Permalink
Fix Call Hierarchy Calls From. (#13201)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-mcmanus authored Jan 27, 2025
1 parent d7f5c28 commit 3614cab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class CallHierarchyProvider implements vscode.CallHierarchyProvider {
let response: CallHierarchyCallsItemResult | undefined;
let cancelled: boolean = false;
try {
await this.client.languageClient.sendRequest(CallHierarchyCallsFromRequest, params, token);
response = await this.client.languageClient.sendRequest(CallHierarchyCallsFromRequest, params, token);
} catch (e: any) {
cancelled = e instanceof ResponseError && (e.code === RequestCancelled || e.code === ServerCancelled);
if (!cancelled) {
Expand Down

0 comments on commit 3614cab

Please sign in to comment.