mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Skip testing pro plugins in main.py
This commit is contained in:
parent
9ef2cf8c6c
commit
097b8979c9
1 changed files with 3 additions and 0 deletions
|
|
@ -323,6 +323,9 @@ try:
|
|||
)
|
||||
|
||||
for plugin in plugins:
|
||||
if plugin.type == "pro": # ? We do not test the pro plugins in here
|
||||
continue
|
||||
|
||||
if plugin.type == "core" and plugin.id in core_plugins:
|
||||
current_plugin = core_plugins
|
||||
elif plugin.type == "external" and plugin.id in external_plugins:
|
||||
|
|
|
|||
Loading…
Reference in a new issue