Skip to content

Commit

Permalink
fix typo in table name
Browse files Browse the repository at this point in the history
  • Loading branch information
stremovsky committed Nov 29, 2024
1 parent 560d36b commit 5f48d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/userapps_db.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ func (dbobj dbcon) dumpUserApps(userTOKEN string, conf Config) ([]byte, error) {
}
}
} 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 {
return nil, err
}
Expand Down

0 comments on commit 5f48d8c

Please sign in to comment.