Browse Source

refactor(main): use shared session.Session.Context() for future calls

rigormorrtiss 4 năm trước cách đây
mục cha
commit
3492639a1d
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. 1 2
      discordo.go

+ 1 - 2
discordo.go

@@ -1,7 +1,6 @@
 package main
 
 import (
-	"context"
 	"sort"
 	"strings"
 
@@ -129,7 +128,7 @@ func newSession(email string, password string, token string) (s *session.Session
 
 	s.AddHandler(onSessionReady)
 	s.AddHandler(onSessionMessageCreate)
-	if err = s.Open(context.Background()); err != nil {
+	if err = s.Open(s.Context()); err != nil {
 		panic(err)
 	}