cleanup and rename provider to plugin

This commit is contained in:
2026-05-21 16:19:17 -07:00
parent 02d84f423e
commit e8913d1344
62 changed files with 553 additions and 165 deletions
+1 -1
View File
@@ -1170,7 +1170,7 @@ def _infer_hydrus_store_from_url_target(*, target: str, config: dict) -> Optiona
is_hydrus_backend = backend_type == "hydrusnetwork" or backend_class == "hydrusnetwork"
if not is_hydrus_backend:
try:
from ProviderCore.registry import get_plugin
from PluginCore.registry import get_plugin
hydrus_provider = get_plugin("hydrusnetwork", config)
checker = getattr(hydrus_provider, "is_backend", None) if hydrus_provider is not None else None