--- ./CMakeLists.txt.orig 2023-02-09 05:58:46.000000000 -0600 +++ ./CMakeLists.txt 2023-02-14 16:05:41.083008231 -0600 @@ -57,9 +57,6 @@ SyntaxHighlighting ) -find_package(KUserFeedback) -set_package_properties(KUserFeedback PROPERTIES TYPE REQUIRED PURPOSE "Checking whether feedback is enabled or not") - ecm_find_qmlmodule(org.kde.kirigami 2.19) ecm_find_qmlmodule(org.kde.kitemmodels 1.0) ecm_find_qmlmodule(org.kde.kcm 1.6) --- ./src/CMakeLists.txt.orig 2023-02-14 16:05:41.083008231 -0600 +++ ./src/CMakeLists.txt 2023-02-14 16:05:55.423007438 -0600 @@ -103,7 +103,6 @@ KF5::SyntaxHighlighting # Backtrace Highlighting drkonqi_backtrace_parser qbugzilla - KUserFeedbackCore ) if(Systemd_FOUND) --- ./src/bugzillaintegration/reportinterface.cpp.orig 2023-02-09 05:58:46.000000000 -0600 +++ ./src/bugzillaintegration/reportinterface.cpp 2023-02-14 16:05:41.083008231 -0600 @@ -14,7 +14,6 @@ #include #include -#include #include "backtracegenerator.h" #include "bugzillalib.h" @@ -58,13 +57,6 @@ m_sentryUserFeedbackSent = true; maybeDone(); }); - if (KUserFeedback::Provider provider; provider.isEnabled() && provider.telemetryMode() == KUserFeedback::Provider::DetailedUsageStatistics - && !DrKonqi::isTestingBugzilla() && qgetenv("DRKONQI_KDE_BUGZILLA_URL").isEmpty() && !DrKonqi::crashedApplication()->hasDeletedFiles()) { - metaObject()->invokeMethod(this, [this] { - // Send crash event ASAP, if applicable. Trace quality doesn't matter for it. - sendCrashEvent(); - }); - } } void ReportInterface::setBugAwarenessPageData(bool rememberSituation, Reproducible reproducible, bool actions, bool unusual, bool configuration)