Skip to content

Commit

Permalink
修复发消息失败
Browse files Browse the repository at this point in the history
  • Loading branch information
leo committed Dec 10, 2024
1 parent 990d631 commit e0b8975
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 更新日志

### V1.6.69(2024-12-10)
1、修复批量发消息失败

### V1.6.68(2024-11-29)
1、支持群消息带@

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wechaty-web-panel",
"version": "1.6.68",
"version": "1.6.69",
"description": "智能微秘书插件",
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion src/proxy/mqtt.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function getRoom(that, room) {

async function sendRoomSay(that, room, messages, atList) {
console.log(`收到群:${room.name}批量发送消息请求, 消息数量【${messages.length}】`)
const finalRoom = await getRoom(room)
const finalRoom = await getRoom(that, room)

if (!finalRoom) {
console.log(`查找不到群:${room.name},请检查群名是否正确`)
Expand Down

0 comments on commit e0b8975

Please sign in to comment.