mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 11:25:13 +00:00
Merge branch 'develop' into hazelnoot/following-timeline
This commit is contained in:
commit
484a39c658
1 changed files with 5 additions and 0 deletions
|
@ -260,6 +260,11 @@ export class ApiCallService implements OnApplicationShutdown {
|
|||
const meta = await this.metaService.fetch();
|
||||
if (!meta.enableIpLogging) return;
|
||||
const ip = request.ip;
|
||||
if (!ip) {
|
||||
this.logger.warn(`user ${user.id} has a null IP address; please check your network configuration.`);
|
||||
return;
|
||||
}
|
||||
|
||||
const ips = this.userIpHistories.get(user.id);
|
||||
if (ips == null || !ips.has(ip)) {
|
||||
if (ips == null) {
|
||||
|
|
Loading…
Reference in a new issue