fix(workflow): use core torrent info for RSS action (#5786)

This commit is contained in:
InfinityPacer
2026-05-19 13:04:03 +08:00
committed by GitHub
parent f46488cb9c
commit b989d08385
3 changed files with 51 additions and 2 deletions

View File

@@ -5,11 +5,11 @@ from pydantic import Field
from app.workflow.actions import BaseAction
from app.chain.media import MediaChain
from app.core.config import settings, global_vars
from app.core.context import Context
from app.core.context import Context, TorrentInfo
from app.core.metainfo import MetaInfo
from app.helper.rss import RssHelper
from app.log import logger
from app.schemas import ActionParams, ActionContext, TorrentInfo
from app.schemas import ActionParams, ActionContext
class FetchRssParams(ActionParams):