Skip to content

Commit

Permalink
Fix naming of command function for "myId"
Browse files Browse the repository at this point in the history
  • Loading branch information
ElJaviLuki committed Jan 29, 2024
1 parent 78c6adc commit 02e3cdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/grindrplus/modules/Profile.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Profile(recipient: String) : CommandModule(recipient) {
}

@Command(name = "myId", help = "Get your own profile ID.")
private fun mydId(args: List<String>) {
logChatMessage("Your profile ID is: ${ownProfileId}",
private fun myId(args: List<String>) {
logChatMessage("Your profile ID is: $ownProfileId",
this.recipient, this.recipient)
}

Expand Down

0 comments on commit 02e3cdf

Please sign in to comment.