Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/src/main/java/com/bitchat/android/ui/CommandProcessor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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("/slap", emptyList(), "<nickname>", "slap someone with a trout"),
CommandSuggestion("/unblock", emptyList(), "<nickname>", "unblock a peer"),
Expand Down Expand Up @@ -69,7 +69,7 @@ class CommandProcessor(
} else {
val systemMessage = BitchatMessage(
sender = "system",
content = "usage: /join <channel>",
content = "usage: /join <channel> [password]",
timestamp = Date(),
isRelay = false
)
Expand Down