huge refactor of plugin system

This commit is contained in:
2026-04-30 18:56:22 -07:00
parent ea3ead248b
commit be5a11da97
99 changed files with 7603 additions and 11320 deletions
+2 -2
View File
@@ -193,7 +193,7 @@ class PodcastIndex(Provider):
feed_url = str(feed_md.get("url") or item0.get("path") or "").strip()
try:
from API.podcastindex import PodcastIndexClient
from plugins.podcastindex.api import PodcastIndexClient
client = PodcastIndexClient(key, secret)
if feed_id:
@@ -407,7 +407,7 @@ class PodcastIndex(Provider):
return []
try:
from API.podcastindex import PodcastIndexClient
from plugins.podcastindex.api import PodcastIndexClient
client = PodcastIndexClient(key, secret)
feeds = client.search_byterm(query, max_results=limit)