From a93f75cdc3a45bba8d06abd44adce18b7b29a431 Mon Sep 17 00:00:00 2001 From: Alessandro Ros Date: Sun, 22 Feb 2026 13:28:54 +0100 Subject: [PATCH] remove double check (#5457) (#5503) --- internal/core/core.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/core/core.go b/internal/core/core.go index c7e7f099..9b82331b 100644 --- a/internal/core/core.go +++ b/internal/core/core.go @@ -812,7 +812,6 @@ func (p *Core) closeResources(newConf *conf.Conf, calledByAPI bool) { newConf.MulticastIPRange != p.conf.MulticastIPRange || newConf.MulticastRTPPort != p.conf.MulticastRTPPort || newConf.MulticastRTCPPort != p.conf.MulticastRTCPPort || - newConf.RTSPAddress != p.conf.RTSPAddress || !reflect.DeepEqual(newConf.RTSPTransports, p.conf.RTSPTransports) || newConf.RunOnConnect != p.conf.RunOnConnect || newConf.RunOnConnectRestart != p.conf.RunOnConnectRestart ||