mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 04:09:28 +00:00
Fixes #67430
This commit is contained in:
@@ -457,7 +457,7 @@ class TypeScriptCompletionItemProvider implements vscode.CompletionItemProvider
|
||||
};
|
||||
|
||||
const response = await this.client.interruptGetErr(() => this.client.execute('completionEntryDetails', args, token));
|
||||
if (response.type !== 'response' || !response.body) {
|
||||
if (response.type !== 'response' || !response.body || !response.body.length) {
|
||||
return item;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user