From 111f0d958c03a0b77202002d12a0e0c2168c4eab Mon Sep 17 00:00:00 2001 From: uncor3 Date: Thu, 19 Feb 2026 10:54:47 +0000 Subject: [PATCH] fix(installedappswidget): update comments for clarity and investigate potential crash --- src/installedappswidget.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/installedappswidget.cpp b/src/installedappswidget.cpp index 3a7108f..4c4265e 100644 --- a/src/installedappswidget.cpp +++ b/src/installedappswidget.cpp @@ -433,10 +433,10 @@ void InstalledAppsWidget::onAppsDataReady() qDebug() << "Error connecting to SpringBoard services:" << QString::fromUtf8(err->message); } else { - /* - FIXME:springboard_services_connect takes time - MOVE EVERYTHING INTO QTCONCURRENT SO IT DOESN'T BLOCK UI - */ + /* + FIXME:springboard_services_connect takes time + MOVE EVERYTHING INTO QTCONCURRENT SO IT DOESN'T BLOCK UI + */ qDebug() << "Successfully connected to SpringBoard services."; } @@ -624,7 +624,9 @@ void InstalledAppsWidget::loadAppContainer(const QString &bundleId) << QString::fromUtf8(err->message); result["error"] = QString("Error vending documents: %1") .arg(QString::fromUtf8(err->message)); - house_arrest_client_free(houseArrestClient); + // FIXME:Crashes here, needs investigation + // can houseArrestClient be nullptr here? + // house_arrest_client_free(houseArrestClient); return result; }