Skip to content

Commit

Permalink
细节优化
Browse files Browse the repository at this point in the history
  • Loading branch information
TimeRainStarSky committed Feb 3, 2024
1 parent 59b70c7 commit e61ab4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,6 @@ const adapter = new class ICQQAdapter {
}

async makeMsg(id, pick, msg) {
if (!Array.isArray(msg))
msg = [msg]
const message = []
const messages = []
const forward = []
Expand Down Expand Up @@ -255,6 +253,8 @@ const adapter = new class ICQQAdapter {
}

async sendMsg(id, pick, msg, ...args) {
if (!Array.isArray(msg))
msg = [msg]
const rets = { message_id: [], data: [] }
let msgs

Expand Down

0 comments on commit e61ab4e

Please sign in to comment.