crashhandler: fix duplicate variable name

This commit is contained in:
itsmattkc
2022-06-28 10:05:43 -07:00
parent 9b5e0f393d
commit 7785c0d66a
+2 -2
View File
@@ -161,10 +161,10 @@ void CrashHandlerDialog::ReplyFinished(QNetworkReply* reply)
}
}
void CrashHandlerDialog::HandleSslErrors(QNetworkReply *reply, const QList<QSslError> &errors)
void CrashHandlerDialog::HandleSslErrors(QNetworkReply *reply, const QList<QSslError> &se)
{
QStringList errors;
for (const QSslError &err : errors) {
for (const QSslError &err : se) {
errors.append(err.errorString());
}