Skip to content

Commit 0913dac

Browse files
committed
use default client instead of active client to support additional workspaces
1 parent 0ec4890 commit 0913dac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1403,7 +1403,7 @@ async function onCopilotHover(): Promise<void> {
14031403
return;
14041404
}
14051405

1406-
const copilotHoverProvider = clients.ActiveClient.getCopilotHoverProvider();
1406+
const copilotHoverProvider = clients.getDefaultClient().getCopilotHoverProvider();
14071407
if (!copilotHoverProvider) {
14081408
return;
14091409
}

0 commit comments

Comments
 (0)