diff options
| author | 2020-02-09 00:53:59 +0000 | |
|---|---|---|
| committer | 2020-02-09 00:53:59 +0000 | |
| commit | 732a0b77eb1212e308aa45155fb12db92ef6b3dc (patch) | |
| tree | 1fabcbc39f24d9bb767d9e4a7db6145e4233cba6 /src | |
| parent | _all_factoids() takes an array of targets (diff) | |
| signature | ||
should be checking for "*" in user_access
Diffstat (limited to 'src')
| -rw-r--r-- | src/core_modules/channel_access.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core_modules/channel_access.py b/src/core_modules/channel_access.py index 977ecdbd..662599e0 100644 --- a/src/core_modules/channel_access.py +++ b/src/core_modules/channel_access.py @@ -19,13 +19,12 @@ class Module(ModuleManager.BaseModule): else: required_access.append(name) - print(required_access) user_access = target.get_user_setting(user.get_id(), "access", []) identified = self.exports.get_one("is-identified")(user) matched = list(set(required_access)&set(user_access)) - return ("*" in required_access or matched) and identified + return ("*" in user_access or matched) and identified def _command_check(self, event, channel, require_access): if channel: |
