mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
Fix #34122
This commit is contained in:
parent
876262b37c
commit
e99995dce1
1 changed files with 1 additions and 0 deletions
|
@ -336,6 +336,7 @@ export class ExtensionGalleryService implements IExtensionGalleryService {
|
|||
text = text.trim();
|
||||
|
||||
if (text) {
|
||||
text = text.length < 200 ? text : text.substring(0, 200);
|
||||
query = query.withFilter(FilterType.SearchText, text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue