mirror of
https://github.com/kuaifan/dootask.git
synced 2026-02-10 16:45:37 +00:00
no message
This commit is contained in:
parent
c51116acaa
commit
7132413837
@ -1056,7 +1056,11 @@ class DialogController extends AbstractController
|
|||||||
} elseif ($reply_id > 0) {
|
} elseif ($reply_id > 0) {
|
||||||
$action = "reply-$reply_id";
|
$action = "reply-$reply_id";
|
||||||
if ($reply_check === 'yes') {
|
if ($reply_check === 'yes') {
|
||||||
$exisUserMsg = WebSocketDialogMsg::whereDialogId($dialog_id)->where('id', '>', $reply_id)->whereBot(0)->exists();
|
$exisUserMsg = WebSocketDialogMsg::whereDialogId($dialog_id)
|
||||||
|
->where('id', '>', $reply_id)
|
||||||
|
->whereBot(0)
|
||||||
|
->whereNotIn('type', ['notice', 'template'])
|
||||||
|
->exists();
|
||||||
if (!$exisUserMsg) {
|
if (!$exisUserMsg) {
|
||||||
$action = "";
|
$action = "";
|
||||||
}
|
}
|
||||||
|
|||||||
@ -167,7 +167,7 @@ services:
|
|||||||
|
|
||||||
ai:
|
ai:
|
||||||
container_name: "dootask-ai-${APP_ID}"
|
container_name: "dootask-ai-${APP_ID}"
|
||||||
image: "kuaifan/dootask-ai:0.1.6"
|
image: "kuaifan/dootask-ai:0.2.0"
|
||||||
environment:
|
environment:
|
||||||
REDIS_HOST: "${REDIS_HOST}"
|
REDIS_HOST: "${REDIS_HOST}"
|
||||||
REDIS_PORT: "${REDIS_PORT}"
|
REDIS_PORT: "${REDIS_PORT}"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user