🐛 (author): reindex authors on user change

This commit is contained in:
Kazhnuz 2025-01-19 13:03:32 +01:00
parent 617bbf49f7
commit 21787c8203

View file

@ -490,6 +490,8 @@ function editUser($args)
'notes' => $args['username']
));
reindexAuthors();
return true;
}
@ -523,6 +525,8 @@ function disableUser($args)
'notes' => $username
));
reindexAuthors();
return true;
}
@ -567,6 +571,8 @@ function deleteUser($args)
'notes' => $username
));
reindexAuthors();
return true;
}