diff options
| author | 2019-01-29 07:35:48 +0000 | |
|---|---|---|
| committer | 2019-01-29 07:35:48 +0000 | |
| commit | 0564a173a3b24a7d512f864e80534af4eab2aaa4 (patch) | |
| tree | 8b4804ed523befb9a436620d23f9200bd4d5d513 /modules | |
| parent | Support `*` as a channel permission, to give users all access (diff) | |
| signature | ||
Typo, 'acess' -> 'access' (channel_access.py)
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: |
