summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar fearlessTobi2018-11-30 19:01:05 +0100
committerGravatar fearlessTobi2018-12-08 14:34:37 +0100
commitca4e20b4e0c80c75b1b1f5d8d166b95a65f6a781 (patch)
tree3fd0880128946c2179008c1989a6dbf95a3c494d
parentMerge pull request #1864 from lioncash/nrr (diff)
downloadyuzu-ca4e20b4e0c80c75b1b1f5d8d166b95a65f6a781.tar.gz
yuzu-ca4e20b4e0c80c75b1b1f5d8d166b95a65f6a781.tar.xz
yuzu-ca4e20b4e0c80c75b1b1f5d8d166b95a65f6a781.zip
web_service: move telemetry condition from TelemetrySession constructor to destructor
Fixes an issue where Testcases couldn't be sent when Telemetry was disabled, because both things are tied closely together in the backend.
-rw-r--r--src/core/telemetry_session.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/core/telemetry_session.cpp b/src/core/telemetry_session.cpp
index a3b08c740..09ed74d78 100644
--- a/src/core/telemetry_session.cpp
+++ b/src/core/telemetry_session.cpp
@@ -103,13 +103,8 @@ bool VerifyLogin(const std::string& username, const std::string& token) {
103 103
104TelemetrySession::TelemetrySession() { 104TelemetrySession::TelemetrySession() {
105#ifdef ENABLE_WEB_SERVICE 105#ifdef ENABLE_WEB_SERVICE
106 if (Settings::values.enable_telemetry) { 106 backend = std::make_unique<WebService::TelemetryJson>(
107 backend = std::make_unique<WebService::TelemetryJson>(Settings::values.web_api_url, 107 Settings::values.web_api_url, Settings::values.yuzu_username, Settings::values.yuzu_token);
108 Settings::values.yuzu_username,
109 Settings::values.yuzu_token);
110 } else {
111 backend = std::make_unique<Telemetry::NullVisitor>();
112 }
113#else 108#else
114 backend = std::make_unique<Telemetry::NullVisitor>(); 109 backend = std::make_unique<Telemetry::NullVisitor>();
115#endif 110#endif
@@ -180,7 +175,8 @@ TelemetrySession::~TelemetrySession() {
180 // This is just a placeholder to wrap up the session once the core completes and this is 175 // This is just a placeholder to wrap up the session once the core completes and this is
181 // destroyed. This will be moved elsewhere once we are actually doing real I/O with the service. 176 // destroyed. This will be moved elsewhere once we are actually doing real I/O with the service.
182 field_collection.Accept(*backend); 177 field_collection.Accept(*backend);
183 backend->Complete(); 178 if (Settings::values.enable_telemetry)
179 backend->Complete();
184 backend = nullptr; 180 backend = nullptr;
185} 181}
186 182