Skip to content

Commit

Permalink
bridgev2/commands: fix pm command not starting chat
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Dec 5, 2024
1 parent bfa32f3 commit 933daea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridgev2/commands/startchat.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func fnResolveIdentifier(ce *Event) {
if api == nil {
return
}
createChat := ce.Command == "start-chat"
createChat := ce.Command == "start-chat" || ce.Command == "pm"
identifier := strings.Join(identifierParts, " ")
resp, err := api.ResolveIdentifier(ce.Ctx, identifier, createChat)
if err != nil {
Expand Down

0 comments on commit 933daea

Please sign in to comment.