2022.01.29 bug fix

This commit is contained in:
2023-01-29 21:21:50 +09:00
parent ab346ccb19
commit a9ea8f193f
11 changed files with 3004 additions and 63 deletions

View File

@@ -89,9 +89,10 @@ def initialize():
PluginUtil.make_info_json(P.plugin_info, __file__)
from .logic_ohli24 import LogicOhli24
from .logic_anilife import LogicAniLife
from .logic_linkkf import LogicLinkkf
# P.module_list = [LogicOhli24(P), LogicLinkkf(P)]
P.module_list = [LogicOhli24(P), LogicAniLife(P)]
P.module_list = [LogicOhli24(P), LogicAniLife(P), LogicLinkkf(P)]
P.logic = Logic(P)
default_route(P)
except Exception as e: