fix(bot): Open method being wrongly used

This commit is contained in:
Gustavo "Guz" L. de Mello
2024-08-13 21:43:07 -03:00
parent 5f28695413
commit ac4eead188

View File

@@ -27,5 +27,5 @@ func (b *Bot) Start() error {
return b.session.Open()
}
func (b *Bot) Stop() error {
return b.session.Open()
return b.session.Close()
}