ssh_keys.cc: remove shadowed params (#21184)

pull/21186/head
Dean Lee 4 years ago committed by GitHub
parent 1c952e75b5
commit e772bbf723
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      selfdrive/ui/qt/widgets/ssh_keys.cc

@ -61,7 +61,6 @@ void SshControl::getUserKeys(const QString &username) {
HttpRequest *request = new HttpRequest(this, "https://github.com/" + username + ".keys", "", false);
QObject::connect(request, &HttpRequest::receivedResponse, [=](const QString &resp) {
if (!resp.isEmpty()) {
Params params;
params.put("GithubUsername", username.toStdString());
params.put("GithubSshKeys", resp.toStdString());
} else {

Loading…
Cancel
Save