diff --git a/platform/platform-impl/src/com/intellij/ide/plugins/marketplace/MarketplaceRequests.kt b/platform/platform-impl/src/com/intellij/ide/plugins/marketplace/MarketplaceRequests.kt index e9971aeffe5f..ed63e621c66c 100644 --- a/platform/platform-impl/src/com/intellij/ide/plugins/marketplace/MarketplaceRequests.kt +++ b/platform/platform-impl/src/com/intellij/ide/plugins/marketplace/MarketplaceRequests.kt @@ -166,7 +166,7 @@ class MarketplaceRequests(private val coroutineScope: CoroutineScope) : PluginIn var url = URI(MarketplaceUrls.getSearchPluginsUpdatesUrl()) val os = URLEncoder.encode(SystemInfo.OS_NAME + " " + SystemInfo.OS_VERSION, CharsetToolkit.UTF8) val machineId = MachineIdManager.getAnonymizedMachineId("JetBrainsUpdates") // same as regular updates - .takeIf { PropertiesComponent.getInstance().getBoolean(UpdateChecker.MACHINE_ID_DISABLED_PROPERTY, false) } + .takeIf { !PropertiesComponent.getInstance().getBoolean(UpdateChecker.MACHINE_ID_DISABLED_PROPERTY, false) } val query = buildString { append("build=${ApplicationInfoImpl.orFromPluginCompatibleBuild(buildNumber)}")