Merge pull request #492 from rookisbusy/Alpha

fix: chat.js not begin with zero
This commit is contained in:
rookisbusy 2023-04-08 01:42:04 +08:00 committed by GitHub
commit 89d5695b7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -250,11 +250,19 @@ func memory(w http.ResponseWriter, r *http.Request) {
t := statistic.DefaultManager
buf := &bytes.Buffer{}
var err error
first := true
for range tick.C {
buf.Reset()
inuse := t.Memory()
// make chat.js begin with zero
// this is shit var,but we need output 0 for first time
if first {
inuse = 0
first = false
}
if err := json.NewEncoder(buf).Encode(Memory{
Inuse: t.Memory(),
Inuse: inuse,
OSLimit: 0,
}); err != nil {
break