Merge 08158ede705e46c3237e1e34aa16c428b4d13365 into 094657efa0aabbb6f71c9050149d1d01aee96400

This commit is contained in:
tlindi 2026-08-06 00:58:09 -07:00 committed by GitHub
commit 74f0ea1e55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@ class CommandProcessor(
CommandSuggestion("/channels", emptyList(), null, "show all discovered channels"),
CommandSuggestion("/clear", emptyList(), null, "clear chat messages"),
CommandSuggestion("/hug", emptyList(), "<nickname>", "send someone a warm hug"),
CommandSuggestion("/j", listOf("/join"), "<channel>", "join or create a channel"),
CommandSuggestion("/j", listOf("/join"), "<channel> [password]", "join or create a channel"),
CommandSuggestion("/m", listOf("/msg"), "<nickname> [message]", "send private message"),
CommandSuggestion("/pay", emptyList(), "<token> [public]", "send a Cashu ecash token"),
CommandSuggestion("/slap", emptyList(), "<nickname>", "slap someone with a trout"),
@ -75,7 +75,7 @@ class CommandProcessor(
} else {
val systemMessage = BitchatMessage(
sender = "system",
content = "usage: /join <channel>",
content = "usage: /join <channel> [password]",
timestamp = Date(),
isRelay = false
)