fix(updater): convert int to string

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers 2023-06-29 15:42:36 -07:00
parent 41cb8d7ec6
commit 109ae5bae0
No known key found for this signature in database
GPG Key ID: E10E321EB160949B

View File

@ -193,9 +193,10 @@ void PrismExternalUpdater::checkForUpdates()
// unknown error code
{
qDebug() << "Updater exited with unknown code" << exit_code;
auto msgBox = QMessageBox(QMessageBox::Information, tr("Unknown Update Error"),
tr("The updater exited with an unknown condition.\nExit Code: %1").arg(exit_code),
QMessageBox::Ok, priv->parent);
auto msgBox =
QMessageBox(QMessageBox::Information, tr("Unknown Update Error"),
tr("The updater exited with an unknown condition.\nExit Code: %1").arg(QString::number(exit_code)),
QMessageBox::Ok, priv->parent);
auto detail_txt = tr("StdOut: %1\nStdErr: %2").arg(std_output).arg(std_error);
msgBox.setDetailedText(detail_txt);