simplified response

This commit is contained in:
2020-03-18 19:33:27 +00:00
parent ab22399e02
commit e9e70d47fe

View File

@ -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)
} }