mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
fix
This commit is contained in:
parent
f1b0be710a
commit
f1027ec0d9
@ -197,8 +197,8 @@ class Core extends Service {
|
|||||||
recallMsgIds.push(msg.msgId)
|
recallMsgIds.push(msg.msgId)
|
||||||
this.ctx.parallel('nt/message-deleted', msg)
|
this.ctx.parallel('nt/message-deleted', msg)
|
||||||
} else if (sentMsgIds.get(msg.msgId)) {
|
} else if (sentMsgIds.get(msg.msgId)) {
|
||||||
sentMsgIds.delete(msg.msgId)
|
|
||||||
if (msg.sendStatus === 2) {
|
if (msg.sendStatus === 2) {
|
||||||
|
sentMsgIds.delete(msg.msgId)
|
||||||
this.ctx.parallel('nt/message-sent', msg)
|
this.ctx.parallel('nt/message-sent', msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { ipcMain } from 'electron'
|
import { ipcMain } from 'electron'
|
||||||
import { hookApiCallbacks, registerReceiveHook, removeReceiveHook } from './hook'
|
import { hookApiCallbacks, registerReceiveHook, removeReceiveHook } from './hook'
|
||||||
import { log } from '../common/utils/legacyLog'
|
import { getBuildVersion, log } from '../common/utils'
|
||||||
import { randomUUID } from 'node:crypto'
|
import { randomUUID } from 'node:crypto'
|
||||||
import {
|
import {
|
||||||
GeneralCallResult,
|
GeneralCallResult,
|
||||||
@ -114,7 +114,7 @@ export function invoke<
|
|||||||
M extends keyof NTService[S] & string = any
|
M extends keyof NTService[S] & string = any
|
||||||
>(method: Extract<unknown, `${S}/${M}`> | string, args: unknown[], options: InvokeOptions<R> = {}) {
|
>(method: Extract<unknown, `${S}/${M}`> | string, args: unknown[], options: InvokeOptions<R> = {}) {
|
||||||
const className = options.className ?? NTClass.NT_API
|
const className = options.className ?? NTClass.NT_API
|
||||||
const channel = options.channel ?? NTChannel.IPC_UP_2
|
const channel = options.channel ?? getBuildVersion() >= 28788 ? NTChannel.IPC_UP_3 : NTChannel.IPC_UP_2
|
||||||
const timeout = options.timeout ?? 5000
|
const timeout = options.timeout ?? 5000
|
||||||
const afterFirstCmd = options.afterFirstCmd ?? true
|
const afterFirstCmd = options.afterFirstCmd ?? true
|
||||||
let eventName = className + '-' + channel[channel.length - 1]
|
let eventName = className + '-' + channel[channel.length - 1]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user