From c8189568a72b6ed139c3678f1b83e374f2a0107d Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Thu, 26 May 2016 08:16:59 +0200 Subject: [PATCH] use pagesize 50 instead of 30 --- .../extensionManagement/node/extensionGalleryService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/platform/extensionManagement/node/extensionGalleryService.ts b/src/vs/platform/extensionManagement/node/extensionGalleryService.ts index 6899a36a931..941f16d7f17 100644 --- a/src/vs/platform/extensionManagement/node/extensionGalleryService.ts +++ b/src/vs/platform/extensionManagement/node/extensionGalleryService.ts @@ -219,7 +219,7 @@ export class ExtensionGalleryService implements IExtensionGalleryService { const type = options.ids ? 'ids' : (options.text ? 'text' : 'all'); const text = options.text || ''; - const pageSize = getOrDefault(options, o => o.pageSize, 30); + const pageSize = getOrDefault(options, o => o.pageSize, 50); this.telemetryService.publicLog('galleryService:query', { type, text }); -- GitLab