From 2f8af3a1b7e2a7b73bfa508c4c102a90088b3b70 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Wed, 5 Aug 2026 20:55:56 -0400 Subject: [PATCH] Say the bug was recorded locally, because that is what happened --- Plugin/unraid/Tools/ai_chat_worker.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Plugin/unraid/Tools/ai_chat_worker.php b/Plugin/unraid/Tools/ai_chat_worker.php index b1ed0fb..bdd17e9 100644 --- a/Plugin/unraid/Tools/ai_chat_worker.php +++ b/Plugin/unraid/Tools/ai_chat_worker.php @@ -497,8 +497,14 @@ if ($profile === 'troubleshoot' ]); if ($res['ok']) { $bugFiled = $res; - $answer .= "\n\n_Filed as bug " . $res['id'] - . ($res['seen'] > 1 ? ' — seen ' . $res['seen'] . ' times' : '') . "._"; + // Say what actually happened, not what sounds reassuring. This is written to a file on + // this host — it is not transmitted anywhere, and telling a user their report has been + // "sent" when it is sitting on their own disk is the exact species of confident wrong + // answer the rest of this profile is built to avoid. When a transport exists, this line + // changes with it. + $answer .= "\n\n_Recorded on this host as bug " . $res['id'] + . ($res['seen'] > 1 ? ', seen ' . $res['seen'] . ' times' : '') + . ". It is listed on the AI tab and counted in the Sunday report._"; } }