mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 05:48:47 +01:00
finish implementation of opensubtitles downloader
This commit is contained in:
@@ -42,6 +42,17 @@ namespace OpenSubtitlesHandler
|
||||
this._query = "";
|
||||
}
|
||||
|
||||
public SubtitleSearchParameters(string subLanguageId, string query)
|
||||
{
|
||||
this.subLanguageId = subLanguageId;
|
||||
this.movieHash = "";
|
||||
this.movieByteSize = 0;
|
||||
this.imdbid = "";
|
||||
this._episode = "";
|
||||
this._season = "";
|
||||
this._query = query;
|
||||
}
|
||||
|
||||
public SubtitleSearchParameters(string subLanguageId, string query, string season, string episode)
|
||||
{
|
||||
this.subLanguageId = subLanguageId;
|
||||
|
||||
Reference in New Issue
Block a user