From 44b5de156886995fdcf881cbc1208505ad0e8b0e Mon Sep 17 00:00:00 2001 From: jade Date: Tue, 3 Jun 2025 14:22:30 -0700 Subject: Fix missing logging of connections by disallowed IPs (#14011) --- MediaBrowser.Common/Extensions/HttpContextExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MediaBrowser.Common/Extensions/HttpContextExtensions.cs') diff --git a/MediaBrowser.Common/Extensions/HttpContextExtensions.cs b/MediaBrowser.Common/Extensions/HttpContextExtensions.cs index a1056b7c8..739a53c7a 100644 --- a/MediaBrowser.Common/Extensions/HttpContextExtensions.cs +++ b/MediaBrowser.Common/Extensions/HttpContextExtensions.cs @@ -12,7 +12,7 @@ namespace MediaBrowser.Common.Extensions /// Checks the origin of the HTTP context. /// /// The incoming HTTP context. - /// true if the request is coming from LAN, false otherwise. + /// true if the request is coming from the same machine as is running the server, false otherwise. public static bool IsLocal(this HttpContext context) { return (context.Connection.LocalIpAddress is null -- cgit v1.2.3