fix: ordinamento membri (namecomplete (concat: name, surname, username)

This commit is contained in:
Surya Paolo
2023-04-12 15:37:54 +02:00
parent 5bb6611384
commit f13786fca1
10 changed files with 500 additions and 86 deletions

View File

@@ -1557,7 +1557,7 @@ router.post('/cmd', authenticate, async (req, res) => {
if (cmd === shared_consts.CMD_USER.SET_FAVORITE) {
if (tab) {
if (value)
ris = await User.addFavorite(idapp, username, id, tab);
ris = await User.addFavorite(req, idapp, username, id, tab);
else
ris = await User.removeFavorite(idapp, username, id, tab);
}