fix: check sig exists

This commit is contained in:
Kieran 2023-12-28 17:57:34 +00:00
parent 6ad99e7e95
commit 7c8136b503
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -176,6 +176,6 @@ export abstract class EventExt {
if (type === EventType.ParameterizedReplaceable) {
if (!findTag(ev, "d")) return false;
}
return true;
return ev.sig !== undefined;
}
}