summaryrefslogtreecommitdiff
path: root/server/channel
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2025-05-30 16:42:48 -0500
committercitrons <citrons@mondecitronne.com>2025-05-30 17:46:50 -0500
commitadb0e3528b40be863bca76b22f4640af4e0dba78 (patch)
tree9905f45df921ce1c5f7e22c08e30ddd48b5697a2 /server/channel
parent7154df4f7bd86fd38aaa00a9bb35f9e97091f168 (diff)
use "gone" for both deleted channels and users
Diffstat (limited to 'server/channel')
-rw-r--r--server/channel/channel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/channel/channel.go b/server/channel/channel.go
index 69f2400..078e377 100644
--- a/server/channel/channel.go
+++ b/server/channel/channel.go
@@ -175,6 +175,6 @@ func (c *Channel) GetInfo() proto.Object {
func (t Tombstone) GetInfo() proto.Object {
return proto.Object {
- "deleted", "", map[string]string {"": t.name},
+ "gone", "", map[string]string {"": t.name, "kind": "channel"},
}
}