-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Description
Affects: 22.06.2
If you fill in the metrics (e.g. OS, OS Version, app version, etc.) they won't be sent because it tests if the the metrics JSON object contains the entry "metrics". It should just be checking if the JSON is non-empty.
Basically:
if (session_params.contains("metrics")) {
data["metrics"] = configuration->metrics.dump();
}should be
if (!configuration->metrics.empty()) {
data["metrics"] = configuration->metrics.dump();
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels