1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-10-31 20:14:21 +00:00

Session: Fixed a panic bug when the gateway fails

This commit is contained in:
diamondburned (Forefront) 2020-06-29 11:00:07 -07:00
parent 01021f0902
commit 16ed406c53

View file

@ -45,7 +45,7 @@ func New(token string) (*Session, error) {
// Create a gateway // Create a gateway
g, err := gateway.NewGateway(token) g, err := gateway.NewGateway(token)
if err != nil { if err != nil {
err = errors.Wrap(err, "failed to connect to Gateway") return nil, errors.Wrap(err, "failed to connect to Gateway")
} }
return NewWithGateway(g), err return NewWithGateway(g), err