fix: audible status using wrong property name

This commit is contained in:
Roardom
2026-03-09 05:38:27 +00:00
parent 3b51a3ed5c
commit 124cce2a0e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -284,7 +284,7 @@ class NerdBot
$affected = ChatConversation::query()->upsert([[
'user_id' => $target->id,
'bot_id' => $this->bot->id,
'status' => false,
'audible' => false,
'deleted_at' => null,
]], ['user_id', 'bot_id'], ['deleted_at']);
+1 -1
View File
@@ -166,7 +166,7 @@ class SystemBot
$affected = ChatConversation::query()->upsert([[
'user_id' => $target->id,
'bot_id' => $this->bot->id,
'status' => false,
'audible' => false,
'deleted_at' => null,
]], ['user_id', 'bot_id'], ['deleted_at']);