Przeglądaj źródła

Fix ordering of the OnReady event and Session being updated.

Chris Rhodes 8 lat temu
rodzic
commit
45e01b20c9
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      discord.go

+ 2 - 2
discord.go

@@ -201,13 +201,13 @@ func (s *Session) handle(event interface{}) {
 
 	handlerParameters := []reflect.Value{reflect.ValueOf(s), reflect.ValueOf(event)}
 
-	if handlers, ok := s.handlers[reflect.TypeOf(event)]; ok {
+	if handlers, ok := s.handlers[nil]; ok {
 		for _, handler := range handlers {
 			handler.Call(handlerParameters)
 		}
 	}
 
-	if handlers, ok := s.handlers[nil]; ok {
+	if handlers, ok := s.handlers[reflect.TypeOf(event)]; ok {
 		for _, handler := range handlers {
 			handler.Call(handlerParameters)
 		}