From a394d1017a726d1230dc58e59736bc39235ba3e5 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Thu, 20 May 2021 02:29:41 -0700 Subject: [PATCH] replay: fix jwt path on PC --- selfdrive/ui/replay/replay.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/replay/replay.cc b/selfdrive/ui/replay/replay.cc index 0773600f34..ec1caf7b16 100644 --- a/selfdrive/ui/replay/replay.cc +++ b/selfdrive/ui/replay/replay.cc @@ -46,7 +46,7 @@ Replay::Replay(QString route, SubMaster *sm_, QObject *parent) : sm(sm_), QObjec } const QString url = "https://api.commadotai.com/v1/route/" + route + "/files"; - http = new HttpRequest(this, url, "", Hardware::PC()); + http = new HttpRequest(this, url, "", !Hardware::PC()); QObject::connect(http, &HttpRequest::receivedResponse, this, &Replay::parseResponse); }