mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 17:28:28 +00:00
fix(ci): restore main checks after bulk merges
This commit is contained in:
@@ -366,7 +366,10 @@ export async function monitorWebInbox(options: {
|
||||
|
||||
const sendApi = createWebSendApi({
|
||||
sock: {
|
||||
sendMessage: (jid, content, options) => sock.sendMessage(jid, content, options),
|
||||
sendMessage: (jid, content, options) =>
|
||||
options === undefined
|
||||
? sock.sendMessage(jid, content)
|
||||
: sock.sendMessage(jid, content, options),
|
||||
sendPresenceUpdate: (presence, jid?: string) => sock.sendPresenceUpdate(presence, jid),
|
||||
},
|
||||
defaultAccountId: options.accountId,
|
||||
|
||||
Reference in New Issue
Block a user