mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 07:03:09 +02:00
fix(backend): fix admin/get-user-ips error
This commit is contained in:
parent
3c5bcdd7b3
commit
6b7efb6f1d
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
|
||||
return ips.map(x => ({
|
||||
ip: x.ip,
|
||||
createdAt: this.idService.parse(x.id).date.toISOString(),
|
||||
createdAt: x.createdAt.toISOString(),
|
||||
}));
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue