This commit is contained in:
boufni95 2024-09-27 18:23:31 +00:00
parent 8156a065bd
commit 4d4b9409e5
2 changed files with 1 additions and 1 deletions

View file

@ -46,6 +46,7 @@ export default (serverMethods: Types.ServerMethods, mainHandler: Main, nostrSett
log(ERROR, "invalid json event received", event.content)
return
}
console.log(event)
if (event.kind === 21001) {
const offerReq = j as NofferData
mainHandler.handleNip69Noffer(offerReq, event)

View file

@ -189,7 +189,6 @@ export default class Handler {
return
}
console.log(content)
this.eventCallback({ id: eventId, content, pub: e.pubkey, appId: app.appId, startAtNano, startAtMs, kind: e.kind })
}