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

Fix the is-local check when resetting the password

This fixes the check whether a warning should be logged when resetting
the password from outside the local network.

Fixes: 
pull/10060/head
Jan Müller 2 years ago
parent d3c7af0d5c
commit dd75f35a1a

@ -494,7 +494,7 @@ public class UserController : BaseJellyfinApiController
var isLocal = HttpContext.IsLocal()
|| _networkManager.IsInLocalNetwork(ip);
if (isLocal)
if (!isLocal)
{
_logger.LogWarning("Password reset process initiated from outside the local network with IP: {IP}", ip);
}

Loading…
Cancel
Save