add getOnline feature

This commit is contained in:
HynoR 2024-05-09 10:10:20 +08:00
parent 415ef42b5a
commit 2366882bd6

View file

@ -83,7 +83,7 @@ func (s *trafficStatsServerImpl) ServeHTTP(w http.ResponseWriter, r *http.Reques
s.kick(w, r)
return
}
if r.Method == http.MethodPost && r.URL.Path == "/online" {
if r.Method == http.MethodGet && r.URL.Path == "/online" {
s.getOnline(w, r)
return
}