修复登录日志保存

This commit is contained in:
whyour 2024-10-19 00:18:24 +08:00
parent 4244502949
commit 3822c37fa0

View File

@ -217,7 +217,7 @@ export default class UserService {
(a, b) => b.info!.timestamp! - a.info!.timestamp!,
);
if (result.length > 100) {
const ids = result.slice(0, result.length - 100).map((x) => x.id!);
const ids = result.slice(100).map((x) => x.id!);
await SystemModel.destroy({
where: { id: ids },
});