Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/a774ccf426e15ddb7cc248c2516825778233dab9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Real IP logging when IPv4 is mapped as IPv6

(cherry picked from commit 782bdcc0a9c118f4b7a25fc90a966a6381a7f248)
pull/6682/head
Robin Dadswell 4 years ago committed by Qstick
parent 3654340e0f
commit a774ccf426

@ -156,6 +156,12 @@ namespace Radarr.Http.Extensions
}
var remoteIP = request.HttpContext.Connection.RemoteIpAddress;
if (remoteIP.IsIPv4MappedToIPv6)
{
remoteIP = remoteIP.MapToIPv4();
}
var remoteAddress = remoteIP.ToString();
// Only check if forwarded by a local network reverse proxy

Loading…
Cancel
Save