This is an automated email from the ASF dual-hosted git repository.
humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new fc6ffbc missing colon
fc6ffbc is described below
commit fc6ffbc18acc7568df67f5063d3c8d61fef45208
Author: Daniel Gruno <[email protected]>
AuthorDate: Sat Sep 11 11:46:14 2021 -0500
missing colon
---
server/endpoints/preferences.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server/endpoints/preferences.py b/server/endpoints/preferences.py
index ad0f635..6ca29c0 100644
--- a/server/endpoints/preferences.py
+++ b/server/endpoints/preferences.py
@@ -39,7 +39,7 @@ async def process(
can_access = plugins.aaa.can_access_list(session, ml)
if server.config.ui.focus_domain != "*":
if '*' in server.config.ui.focus_domain:
- if not fnmatch.fnmatch(ldomain,
server.config.ui.focus_domain)
+ if not fnmatch.fnmatch(ldomain,
server.config.ui.focus_domain):
continue
elif ldomain != (server.config.ui.focus_domain or
session.host):
continue