(hostname: string | null)
| 51 | userAgent: string | null; |
| 52 | }) { |
| 53 | function isLocalIpAddress(hostname: string | null) { |
| 54 | if (!hostname) { |
| 55 | return false; |
| 56 | } |
| 57 | return hostname.startsWith('192.168.1.'); |
| 58 | } |
| 59 | if (isLocalIpAddress(hostname)) { |
| 60 | return; |
| 61 | } |