mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 03:27:13 +08:00
Run formatter on code
This commit is contained in:
parent
4a017b0f32
commit
8f51cd826c
@ -24,7 +24,7 @@ func getTokenFromRequest(r *http.Request) ([]byte, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("failed to decode token: %s", err)
|
return nil, fmt.Errorf("failed to decode token: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(token) != account.TokenSize {
|
if len(token) != account.TokenSize {
|
||||||
return nil, fmt.Errorf("invalid token length: got %d, expected %d", len(token), account.TokenSize)
|
return nil, fmt.Errorf("invalid token length: got %d, expected %d", len(token), account.TokenSize)
|
||||||
}
|
}
|
||||||
|
@ -210,7 +210,7 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make this not suck
|
// TODO: make this not suck
|
||||||
if !active && r.URL.Path != "/savedata/clear"{
|
if !active && r.URL.Path != "/savedata/clear" {
|
||||||
httpError(w, r, fmt.Errorf("session out of date"), http.StatusBadRequest)
|
httpError(w, r, fmt.Errorf("session out of date"), http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,6 @@ func main() {
|
|||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
|
||||||
// register gob types
|
// register gob types
|
||||||
gob.Register([]interface{}{})
|
gob.Register([]interface{}{})
|
||||||
gob.Register(map[string]interface{}{})
|
gob.Register(map[string]interface{}{})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user