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._"; } }