Get threads working reasonably well

This commit is contained in:
Jon Staab
2024-10-01 11:47:21 -07:00
parent 9a4c62e740
commit 3e06c36563
12 changed files with 153 additions and 75 deletions
@@ -6,7 +6,7 @@
import Button from "@lib/components/Button.svelte"
import Tippy from "@lib/components/Tippy.svelte"
import EmojiPicker from "@lib/components/EmojiPicker.svelte"
import {ROOM} from '@app/state'
import {tagRoom} from '@app/state'
import {publishReaction} from '@app/commands'
export let url, room, event
@@ -18,7 +18,7 @@
event,
relays: [url],
content: emoji.unicode,
tags: [[ROOM, room, url]],
tags: [tagRoom(room, url)],
})
popover.hide()