ExtensionManager: Omit download numbers in the browser for now

Reinstate them when they have more substance.

Change-Id: I1a061adca56cdf8aa4a27dfac796605a1fe53e78
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
Alessandro Portale
2024-09-27 16:57:38 +02:00
parent b2114507da
commit f6399637d4

View File

@@ -150,7 +150,8 @@ QVariant ExtensionsModelPrivate::dataFromRemoteExtension(int index, int role) co
case RoleName:
return json.value("display_name");
case RoleDownloadCount:
return json.value("downloads");
break; // TODO: Reinstate download numbers when they have more substance
// return json.value("downloads");
case RoleId:
return json.value(EXTENSION_KEY_ID);
case RoleDateUpdated: