From bc49cfeeded10eb4a73bdfac20ad586ac836045c Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Tue, 21 Jun 2022 10:10:58 -0700 Subject: [PATCH] crashhandler: use correct c++ thing --- app/crashhandler/crashhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/crashhandler/crashhandler.cpp b/app/crashhandler/crashhandler.cpp index ac1173123..a8d9368bb 100644 --- a/app/crashhandler/crashhandler.cpp +++ b/app/crashhandler/crashhandler.cpp @@ -153,7 +153,7 @@ void CrashHandlerDialog::ReplyFinished(QNetworkReply* reply) b.setIcon(QMessageBox::Critical); b.setWindowModality(Qt::WindowModal); b.setWindowTitle(tr("Upload Failed")); - b.setText(tr("Failed to send error report (%1). Please try again later.").arg(QString::number(reply.error()))); + b.setText(tr("Failed to send error report (%1). Please try again later.").arg(QString::number(reply->error()))); b.addButton(QMessageBox::Ok); b.exec();