-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should send country abbreviation, not country display name #30
Comments
This could be caused by the following code in our library: if (abbreviation == null) {
String alternative = timezone.get(KEY_ALTERNATIVE);
if (alternative == null) {
return timezoneId;
}
return get(alternative);
}
return getDisplayName(abbreviation); |
adietish
added a commit
to adietish/intellij-redhat-telemetry
that referenced
this issue
Sep 2, 2021
…r#30) Signed-off-by: Andre Dietisheim <adietish@redhat.com>
adietish
added a commit
to adietish/intellij-redhat-telemetry
that referenced
this issue
Sep 2, 2021
…eloper#30) Signed-off-by: Andre Dietisheim <adietish@redhat.com>
adietish
added a commit
to adietish/intellij-redhat-telemetry
that referenced
this issue
Sep 2, 2021
…eloper#30) Signed-off-by: Andre Dietisheim <adietish@redhat.com>
adietish
added a commit
to adietish/intellij-redhat-telemetry
that referenced
this issue
Sep 2, 2021
…eloper#30) Signed-off-by: Andre Dietisheim <adietish@redhat.com>
adietish
added a commit
to adietish/intellij-redhat-telemetry
that referenced
this issue
Sep 2, 2021
…eloper#30) Signed-off-by: Andre Dietisheim <adietish@redhat.com>
adietish
added a commit
to adietish/intellij-redhat-telemetry
that referenced
this issue
Sep 2, 2021
…eloper#30) Signed-off-by: Andre Dietisheim <adietish@redhat.com>
adietish
added a commit
to adietish/intellij-redhat-telemetry
that referenced
this issue
Sep 2, 2021
…eloper#30) Signed-off-by: Andre Dietisheim <adietish@redhat.com>
adietish
added a commit
that referenced
this issue
Sep 3, 2021
Signed-off-by: Andre Dietisheim <adietish@redhat.com>
adietish
added a commit
to adietish/intellij-redhat-telemetry
that referenced
this issue
Sep 3, 2021
…r#30) Signed-off-by: Andre Dietisheim <adietish@redhat.com>
This was referenced Sep 3, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Our library sends the display name of the country in actions:
the telemetry for vscode sends the country abbreviation:
We have to correct this in order to be consistent.
This results in an empty "most recent country" coulum in Woopra activities. This is also causing problems when sending segment data to http://pendo.io/ (instead of woopra)
The text was updated successfully, but these errors were encountered: