NIP-94 file headers (#488)
* feat: NIP-94 file headers * Merge NIP-81 tags * disable embedding nip94 for now * merge error * disable broken test * bugfixes * bug: validation failure
This commit is contained in:
@ -74,10 +74,10 @@ export class EventBuilder {
|
||||
}
|
||||
|
||||
#validate() {
|
||||
if (!this.#kind) {
|
||||
if (this.#kind === undefined) {
|
||||
throw new Error("Kind must be set");
|
||||
}
|
||||
if (!this.#pubkey) {
|
||||
if (this.#pubkey === undefined) {
|
||||
throw new Error("Pubkey must be set");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user