fix typo in table name

This commit is contained in:
yuli
2024-11-29 15:35:01 +02:00
parent 560d36bda6
commit 5f48d8c656

View File

@@ -257,7 +257,7 @@ func (dbobj dbcon) dumpUserApps(userTOKEN string, conf Config) ([]byte, error) {
} }
} }
} else { } else {
records, err := dbobj.store.GetList(storage.TblName.Userapps, "tone", userTOKEN, 0, 0, "appname") records, err := dbobj.store.GetList(storage.TblName.Userapps, "token", userTOKEN, 0, 0, "appname")
if err != nil { if err != nil {
return nil, err return nil, err
} }