We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21ee34b commit f515d91Copy full SHA for f515d91
plugins/analytics/src/ext.rs
@@ -22,14 +22,20 @@ impl<R: tauri::Runtime, T: tauri::Manager<R>> crate::AnalyticsPluginExt<R> for T
22
store.get(crate::StoreKey::Disabled)?.unwrap_or(false)
23
};
24
25
+ let app_version = self.config().version.clone();
26
+ let app_identifier = self.config().identifier.clone();
27
let git_hash = self.get_git_hash();
28
let bundle_id = self.config().identifier.clone();
- let version = self.config().version.clone();
29
30
payload
31
.props
- .entry("version".into())
32
- .or_insert(version.into());
+ .entry("app_version".into())
33
+ .or_insert(app_version.into());
34
+
35
+ payload
36
+ .props
37
+ .entry("app_identifier".into())
38
+ .or_insert(app_identifier.into());
39
40
41
0 commit comments