merge: fix exception when logging IP addresses (!644)
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/644 Approved-by: dakkar <dakkar@thenautilus.net> Approved-by: Marie <github@yuugi.dev>
This commit is contained in:
commit
a357e9bca2
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