Fix some chat related bugs
Docker / build-and-push-image (push) Successful in 22m43s

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"> <script lang="ts">
import type {Snippet} from "svelte" import type {Snippet} from "svelte"
import {onMount} from "svelte" import {onMount} from "svelte"
import {goto} from "$app/navigation"
import { import {
ago, ago,
int, int,
@@ -73,7 +74,7 @@
? pushModal(ProfileDetail, {pubkey: others[0]}) ? pushModal(ProfileDetail, {pubkey: others[0]})
: pushModal(ChatMembers, {pubkeys: others}) : pushModal(ChatMembers, {pubkeys: others})
const back = () => history.back() const back = () => goto("/chat")
const replyTo = (event: TrustedEvent) => { const replyTo = (event: TrustedEvent) => {
parent = event parent = event
+5 -2
View File
@@ -546,8 +546,11 @@ export const chatsById = call(() => {
const unsubscribers = [ const unsubscribers = [
on(repository, "update", ({added, removed}: RepositoryUpdate) => { on(repository, "update", ({added, removed}: RepositoryUpdate) => {
addEvents(added) // Do this async so that profiles are populated
removeEvents(removed) setTimeout(() => {
addEvents(added)
removeEvents(removed)
}, 50)
}), }),
] ]