summaryrefslogtreecommitdiff
path: root/src/web_service
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-01-21 16:38:36 -0300
committerGravatar ReinUsesLisp2020-01-29 17:53:11 -0300
commit8299f1ceef410bc8eb6b6ccf011590491e90bfe7 (patch)
tree9f84673c4393bc2a55389d2011e1e59ce48b427e /src/web_service
parentsettings: Add settings for graphics backend (diff)
downloadyuzu-8299f1ceef410bc8eb6b6ccf011590491e90bfe7.tar.gz
yuzu-8299f1ceef410bc8eb6b6ccf011590491e90bfe7.tar.xz
yuzu-8299f1ceef410bc8eb6b6ccf011590491e90bfe7.zip
web_service/telemetry_json: Report USER_CONFIG
Diffstat (limited to 'src/web_service')
-rw-r--r--src/web_service/telemetry_json.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web_service/telemetry_json.cpp b/src/web_service/telemetry_json.cpp
index 9156ce802..7538389bf 100644
--- a/src/web_service/telemetry_json.cpp
+++ b/src/web_service/telemetry_json.cpp
@@ -117,6 +117,7 @@ bool TelemetryJson::SubmitTestcase() {
117 impl->SerializeSection(Telemetry::FieldType::Session, "Session"); 117 impl->SerializeSection(Telemetry::FieldType::Session, "Session");
118 impl->SerializeSection(Telemetry::FieldType::UserFeedback, "UserFeedback"); 118 impl->SerializeSection(Telemetry::FieldType::UserFeedback, "UserFeedback");
119 impl->SerializeSection(Telemetry::FieldType::UserSystem, "UserSystem"); 119 impl->SerializeSection(Telemetry::FieldType::UserSystem, "UserSystem");
120 impl->SerializeSection(Telemetry::FieldType::UserConfig, "UserConfig");
120 121
121 auto content = impl->TopSection().dump(); 122 auto content = impl->TopSection().dump();
122 Client client(impl->host, impl->username, impl->token); 123 Client client(impl->host, impl->username, impl->token);