diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/channel_access.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/channel_access.py b/modules/channel_access.py index ce00da0c..ee54b50d 100644 --- a/modules/channel_access.py +++ b/modules/channel_access.py @@ -11,7 +11,7 @@ class Module(ModuleManager.BaseModule): "access", []) identified_account = event["user"].get_identified_account() - if ((require_access in acess or "*" in access) and + if ((require_access in access or "*" in access) and identified_account): return utils.consts.PERMISSION_FORCE_SUCCESS else: |
