diff --git a/src/pretix/base/settings.py b/src/pretix/base/settings.py index 5c3f9400d6..897986150d 100644 --- a/src/pretix/base/settings.py +++ b/src/pretix/base/settings.py @@ -101,7 +101,6 @@ def restricted_plugin_kwargs(): (p.module, p.name) for p in get_all_plugins(None) if ( not p.name.startswith('.') and - getattr(p, 'visible', True) and getattr(p, 'restricted', False) and not hasattr(p, 'is_available') # this means you should not really use restricted and is_available )