🎨 Update av export

This commit is contained in:
Daniel 2023-09-26 10:30:08 +08:00
parent c3adbe6b52
commit 10ac5e557d
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 27 additions and 16 deletions

View file

@ -442,11 +442,7 @@ func getCloudUser(c *gin.Context) {
if nil != t {
token = t.(string)
}
if err := model.RefreshUser(token); nil != err {
ret.Code = 1
ret.Msg = err.Error()
return
}
model.RefreshUser(token)
ret.Data = model.Conf.User
}