私域操盘手 - 修复设备配置错误的问题

This commit is contained in:
柳清爽
2025-05-08 15:16:29 +08:00
parent 40000b397b
commit 6354dd8565
5 changed files with 11 additions and 11 deletions

View File

@@ -73,7 +73,7 @@ class GetDeviceDetailV1Controller extends BaseController
$conf = DeviceTaskconfModel::alias('c')
->field([
'c.autoAddFriend', 'c.autoReply', 'c.contentSync', 'c.aiChat'
'c.autoAddFriend', 'c.autoReply', 'c.momentsSync', 'c.aiChat'
])
->where($where)
->find();
@@ -83,7 +83,7 @@ class GetDeviceDetailV1Controller extends BaseController
}
// 未配置时赋予默认关闭的状态
return ArrHelper::getValue('autoAddFriend,autoReply,contentSync,aiChat', [], 0);
return ArrHelper::getValue('autoAddFriend,autoReply,momentsSync,aiChat', [], 0);
}
/**