Browse Source

simplified response

master
David Haukeness 5 years ago
parent
commit
e9e70d47fe
No known key found for this signature in database
GPG Key ID: 54F2372DDB7F9462
  1. 2
      commands.go

2
commands.go

@ -15,6 +15,6 @@ func (b *bot) setupMeeting(convid chat1.ConvIDStr, msgid chat1.MessageID, words
b.k.SendMessageByConvID(convid, "I'm sorry, i'm not sure what happened... I was unable to set up a new meeting.\nI've written the appropriate logs and notified my humans.") b.k.SendMessageByConvID(convid, "I'm sorry, i'm not sure what happened... I was unable to set up a new meeting.\nI've written the appropriate logs and notified my humans.")
return return
} }
message := fmt.Sprintf("Here's your meeting:\n>URL: %s", meeting.getURL()) message := fmt.Sprintf("Here's your meeting: %s", meeting.getURL())
b.k.SendMessageByConvID(convid, message) b.k.SendMessageByConvID(convid, message)
} }

Loading…
Cancel
Save