Fix some chat related bugs

This commit is contained in:
Jon Staab
2026-03-31 11:18:02 -07:00
parent 97ff8ff802
commit fe89df2aa3
2 changed files with 7 additions and 3 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
<script lang="ts">
import type {Snippet} from "svelte"
import {onMount} from "svelte"
import {goto} from "$app/navigation"
import {
ago,
int,
@@ -73,7 +74,7 @@
? pushModal(ProfileDetail, {pubkey: others[0]})
: pushModal(ChatMembers, {pubkeys: others})
const back = () => history.back()
const back = () => goto("/chat")
const replyTo = (event: TrustedEvent) => {
parent = event
+5 -2
View File
@@ -546,8 +546,11 @@ export const chatsById = call(() => {
const unsubscribers = [
on(repository, "update", ({added, removed}: RepositoryUpdate) => {
addEvents(added)
removeEvents(removed)
// Do this async so that profiles are populated
setTimeout(() => {
addEvents(added)
removeEvents(removed)
}, 50)
}),
]