chore: lint

This commit is contained in:
Rajeh Taher
2025-11-19 16:18:13 +02:00
parent 235d7ec6f6
commit 50d410d117
11 changed files with 34 additions and 101 deletions
+2 -2
View File
@@ -153,8 +153,8 @@ export const makeEventBuffer = (logger: ILogger): BaileysBufferableEventEmitter
return {
process(handler) {
const listener = (map: BaileysEventData) => {
handler(map)
const listener = async (map: BaileysEventData) => {
await handler(map)
}
ev.on('event', listener)