Этот коммит содержится в:
Conor Macpherson
2023-01-06 15:41:06 -05:00
родитель b237c21e28
Коммит e5444269f5

Просмотреть файл

@@ -136,8 +136,8 @@ func (a *App) GetTrueUpProfile() (map[string]any, error) {
json.Unmarshal(profileJson, &telemetryProperties)
delete(telemetryProperties, "plugins")
plugins := profile.Plugins.ToMap()
for pluginName, pluginValue := range plugins {
telemetryProperties["plugin_"+pluginName] = pluginValue
for key, pluginValue := range plugins {
telemetryProperties[key] = pluginValue
}
delete(telemetryProperties, "authentication_features")