From 9ef53163ddd4ffa30d313809c1983f0254b681d6 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 11 Jul 2023 10:53:19 -0400 Subject: [PATCH] Explicitly send the opt out because we were artificially lowering them with settings changes. --- gpt4all-chat/qml/StartupDialog.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gpt4all-chat/qml/StartupDialog.qml b/gpt4all-chat/qml/StartupDialog.qml index bfe725ab..ac228a95 100644 --- a/gpt4all-chat/qml/StartupDialog.qml +++ b/gpt4all-chat/qml/StartupDialog.qml @@ -136,6 +136,8 @@ model release that uses your data!") buttons: optInStatisticsRadio.children onClicked: { MySettings.networkUsageStatsActive = optInStatisticsRadio.checked + if (!optInStatisticsRadio.checked) + Network.sendOptOut(); if (optInNetworkRadio.choiceMade && optInStatisticsRadio.choiceMade) startupDialog.close(); }