Merge pull request #4476 from FearlessTobi/fix-testcase-sending

web_service: move telemetry condition from TelemetrySession constructor to destructor
This commit is contained in:
Weiyi Wang 2018-12-06 14:28:21 -05:00 committed by GitHub
commit b9f7c9142a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,13 +93,9 @@ bool VerifyLogin(const std::string& username, const std::string& token) {
TelemetrySession::TelemetrySession() { TelemetrySession::TelemetrySession() {
#ifdef ENABLE_WEB_SERVICE #ifdef ENABLE_WEB_SERVICE
if (Settings::values.enable_telemetry) { backend = std::make_unique<WebService::TelemetryJson>(Settings::values.web_api_url,
backend = std::make_unique<WebService::TelemetryJson>(Settings::values.web_api_url, Settings::values.citra_username,
Settings::values.citra_username, Settings::values.citra_token);
Settings::values.citra_token);
} else {
backend = std::make_unique<Telemetry::NullVisitor>();
}
#else #else
backend = std::make_unique<Telemetry::NullVisitor>(); backend = std::make_unique<Telemetry::NullVisitor>();
#endif #endif
@ -199,7 +195,8 @@ TelemetrySession::~TelemetrySession() {
// This is just a placeholder to wrap up the session once the core completes and this is // This is just a placeholder to wrap up the session once the core completes and this is
// destroyed. This will be moved elsewhere once we are actually doing real I/O with the service. // destroyed. This will be moved elsewhere once we are actually doing real I/O with the service.
field_collection.Accept(*backend); field_collection.Accept(*backend);
backend->Complete(); if (Settings::values.enable_telemetry)
backend->Complete();
backend = nullptr; backend = nullptr;
} }