hellthread: only apply to event1

This commit is contained in:
Alex Gleason 2023-02-28 20:35:03 -06:00
parent 1d3bc34b91
commit b3c13ca72e
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

View File

@ -28,6 +28,7 @@ interface Event {
} }
function handleMessage(msg: InputMessage): OutputMessage { function handleMessage(msg: InputMessage): OutputMessage {
if (msg.event.kind === 1) {
const p = msg.event.tags.filter((tag) => tag[0] === 'p'); const p = msg.event.tags.filter((tag) => tag[0] === 'p');
if (p.length > HELLTHREAD_LIMIT) { if (p.length > HELLTHREAD_LIMIT) {
@ -36,13 +37,14 @@ function handleMessage(msg: InputMessage): OutputMessage {
action: 'reject', action: 'reject',
msg: `Event rejected due to ${p.length} "p" tags (${HELLTHREAD_LIMIT} is the limit).`, msg: `Event rejected due to ${p.length} "p" tags (${HELLTHREAD_LIMIT} is the limit).`,
}; };
} else { }
}
return { return {
id: msg.event.id, id: msg.event.id,
action: 'accept', action: 'accept',
msg: '', msg: '',
}; };
}
} }
for await (const line of readLines(Deno.stdin)) { for await (const line of readLines(Deno.stdin)) {