Skip to content

Commit fe1d3b2

Browse files
committed
Fix web app property issue
1 parent 693e210 commit fe1d3b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utils/azuretools-core/src/com/microsoft/azuretools/core/mvp/model/webapp/WebAppSettingModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public Map<String, String> getTelemetryProperties(Map<String, String> properties
7676
result.putAll(properties);
7777
}
7878
result.put(TelemetryConstants.RUNTIME, os == OperatingSystem.LINUX ?
79-
"linux-" + getLinuxRuntime().toString() : "windows-" + getWebContainer() + jdkVersion == null ? "" : "-" + jdkVersion.toString());
79+
"linux-" + getLinuxRuntime().toString() : "windows-" + getWebContainer() + (jdkVersion == null ? "" : "-" + jdkVersion.toString()));
8080
result.put(TelemetryConstants.WEBAPP_DEPLOY_TO_SLOT, String.valueOf(isDeployToSlot()));
8181
result.put(TelemetryConstants.SUBSCRIPTIONID, getSubscriptionId());
8282
result.put(TelemetryConstants.CREATE_NEWWEBAPP, String.valueOf(isCreatingNew()));

0 commit comments

Comments
 (0)