summaryrefslogtreecommitdiffstats
path: root/src/web_service/telemetry_json.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-08-23 01:23:22 +0200
committerLioncash <mathew1800@gmail.com>2020-08-23 01:29:54 +0200
commitca5ed50655b744ae4d3242b2105676a43d1482e0 (patch)
treeac342b98c89c4a15d536e8e1e98ea9f753154e32 /src/web_service/telemetry_json.cpp
parentMerge pull request #4546 from lioncash/telemetry (diff)
downloadyuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar
yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.gz
yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.bz2
yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.lz
yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.xz
yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.zst
yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.zip
Diffstat (limited to '')
-rw-r--r--src/web_service/telemetry_json.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web_service/telemetry_json.cpp b/src/web_service/telemetry_json.cpp
index c89a3a0db..6215c914f 100644
--- a/src/web_service/telemetry_json.cpp
+++ b/src/web_service/telemetry_json.cpp
@@ -4,9 +4,9 @@
#include <nlohmann/json.hpp>
#include "common/detached_tasks.h"
-#include "common/web_result.h"
#include "web_service/telemetry_json.h"
#include "web_service/web_backend.h"
+#include "web_service/web_result.h"
namespace WebService {
@@ -125,7 +125,7 @@ bool TelemetryJson::SubmitTestcase() {
Client client(impl->host, impl->username, impl->token);
auto value = client.PostJson("/gamedb/testcase", content, false);
- return value.result_code == Common::WebResult::Code::Success;
+ return value.result_code == WebResult::Code::Success;
}
} // namespace WebService