From edff214c9eb90e5b2e9c11d5a89c53c36898fa01 Mon Sep 17 00:00:00 2001 From: Yuriy Artamonov Date: Sat, 12 Oct 2024 22:04:15 +0200 Subject: [PATCH] [feedback] IJPL-162562 Show evaluation feedback form to new non-commercial users GitOrigin-RevId: acb75deabd4ad80d7e35070b07e1638278f0d4b5 --- .../platform/ide/impl/customization/JetBrainsFeedbackReporter.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/platform-impl/src/com/intellij/platform/ide/impl/customization/JetBrainsFeedbackReporter.kt b/platform/platform-impl/src/com/intellij/platform/ide/impl/customization/JetBrainsFeedbackReporter.kt index cffce32e83b2..d0419371e445 100644 --- a/platform/platform-impl/src/com/intellij/platform/ide/impl/customization/JetBrainsFeedbackReporter.kt +++ b/platform/platform-impl/src/com/intellij/platform/ide/impl/customization/JetBrainsFeedbackReporter.kt @@ -27,6 +27,7 @@ class JetBrainsFeedbackReporter(private val productName: String, "build" to if (appInfo.isEAP) build.asStringWithoutProductCode() else build.asString(), "timezone" to System.getProperty("user.timezone", ""), "eval" to (LicensingFacade.getInstance()?.isEvaluationLicense == true).toString(), + "license" to (LicensingFacade.getInstance()?.subType ?: "unknown") )) }