From 7785c0d66a49f3520309226d95eaf99c4de3f3f1 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Tue, 28 Jun 2022 10:05:43 -0700 Subject: [PATCH] crashhandler: fix duplicate variable name --- app/crashhandler/crashhandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/crashhandler/crashhandler.cpp b/app/crashhandler/crashhandler.cpp index b686d6f58..5fe8cfb75 100644 --- a/app/crashhandler/crashhandler.cpp +++ b/app/crashhandler/crashhandler.cpp @@ -161,10 +161,10 @@ void CrashHandlerDialog::ReplyFinished(QNetworkReply* reply) } } -void CrashHandlerDialog::HandleSslErrors(QNetworkReply *reply, const QList &errors) +void CrashHandlerDialog::HandleSslErrors(QNetworkReply *reply, const QList &se) { QStringList errors; - for (const QSslError &err : errors) { + for (const QSslError &err : se) { errors.append(err.errorString()); }