mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-02-12 13:11:24 -05:00
Fix bug when federation_domain_whitelist is an emtpy list
Outbound federation were incorrectly allowed when the config option was set to an empty list
This commit is contained in:
parent
15e8dd2ccc
commit
1d67b13674
@ -133,7 +133,7 @@ class MatrixFederationHttpClient(object):
|
|||||||
failures, connection failures, SSL failures.)
|
failures, connection failures, SSL failures.)
|
||||||
"""
|
"""
|
||||||
if (
|
if (
|
||||||
self.hs.config.federation_domain_whitelist and
|
self.hs.config.federation_domain_whitelist is not None and
|
||||||
destination not in self.hs.config.federation_domain_whitelist
|
destination not in self.hs.config.federation_domain_whitelist
|
||||||
):
|
):
|
||||||
raise FederationDeniedError(destination)
|
raise FederationDeniedError(destination)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user