Merge pull request #1087 from fatedier/fix

fix PUT /api/config without token
This commit is contained in:
fatedier 2019-02-12 15:03:00 +08:00 committed by GitHub
commit 9737978f28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -311,6 +311,8 @@ func (svr *Service) apiPutConfig(w http.ResponseWriter, r *http.Request) {
newRows = append(newRows, token) newRows = append(newRows, token)
} }
} }
} else {
newRows = tmpRows
} }
content = strings.Join(newRows, "\n") content = strings.Join(newRows, "\n")