Enhance ChineseNfoRegistry job method to support optional parameters for TMDB ID, season, and episode; update configuration for HTTP proxy and connection string
This commit is contained in:
@@ -2,5 +2,11 @@ namespace Interface.Jobs;
|
||||
|
||||
public interface IChineseNfoRegistry
|
||||
{
|
||||
void Job(bool ignoreLocked, bool ignoreCompleted);
|
||||
void Job(
|
||||
string? tmdbId = null,
|
||||
string? seasonNumber = null,
|
||||
string? episodeNumber = null,
|
||||
bool ignoreLocked = false,
|
||||
bool ignoreCompleted = false
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user