This commit is contained in:
Doug Hoyte
2023-09-08 12:31:26 -04:00
parent a7cc9013ba
commit d8f04ac89a
2 changed files with 2 additions and 5 deletions

View File

@ -205,6 +205,7 @@ table.vert {
.content {
padding-left: 25px;
margin-top: -10px;
}
}

View File

@ -62,7 +62,7 @@ document.addEventListener('alpine:init', () => {
let ev = {
created_at: Math.floor(((new Date()) - 0) / 1000),
kind: 1,
tags: [],
tags: [['t', 'oddbean']],
content: this.$refs.post.value,
};
@ -145,10 +145,6 @@ document.addEventListener('alpine:init', () => {
if (!seenPTags[this.repliedTo.pubkey]) {
ev.tags.push(['p', this.repliedTo.pubkey]);
}
// t tags
ev.tags.push(['t', 'oddbean']);
}
ev = await window.nostr.signEvent(ev);