fix: Change source type from ani24 to ohli24 - Update detection logic in mod_queue.py - Update source badge color mapping - Update downloader selection

This commit is contained in:
2026-01-08 20:14:21 +09:00
parent cae3c9b269
commit d98c13a4e9
4 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ def get_downloader(source_type: str) -> Optional[BaseDownloader]:
from .ytdlp_aria2 import YtdlpAria2Downloader
return YtdlpAria2Downloader()
elif source_type in ('ani24', 'hls'):
elif source_type in ('ohli24', 'hls'):
from .ffmpeg_hls import FfmpegHlsDownloader
return FfmpegHlsDownloader()