1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Fixed: Listening on all IPv4 Addresses

Closes #7526
This commit is contained in:
Stevie Robinson
2025-01-05 02:58:24 +01:00
committed by GitHub
parent 4dcc015fb1
commit 035c474f10
2 changed files with 0 additions and 7 deletions
@@ -33,7 +33,6 @@ namespace Sonarr.Api.V3.Config
SharedValidator.RuleFor(c => c.BindAddress)
.ValidIpAddress()
.NotListenAllIp4Address()
.When(c => c.BindAddress != "*" && c.BindAddress != "localhost");
SharedValidator.RuleFor(c => c.Port).ValidPort();