mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 14:58:36 +01:00
improve queries from scheduled tasks
This commit is contained in:
@@ -160,6 +160,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
public bool ForceDirect { get; set; }
|
||||
public Dictionary<string, string> ExcludeProviderIds { get; set; }
|
||||
public bool EnableGroupByMetadataKey { get; set; }
|
||||
public bool? HasChapterImages { get; set; }
|
||||
|
||||
public Tuple<string, SortOrder>[] OrderBy { get; set; }
|
||||
|
||||
@@ -169,6 +170,10 @@ namespace MediaBrowser.Controller.Entities
|
||||
|
||||
public DtoOptions DtoOptions { get; set; }
|
||||
public int MinSimilarityScore { get; set; }
|
||||
public string HasNoAudioTrackWithLanguage { get; set; }
|
||||
public string HasNoInternalSubtitleTrackWithLanguage { get; set; }
|
||||
public string HasNoExternalSubtitleTrackWithLanguage { get; set; }
|
||||
public string HasNoSubtitleTrackWithLanguage { get; set; }
|
||||
|
||||
public InternalItemsQuery()
|
||||
{
|
||||
|
||||
@@ -563,8 +563,6 @@ namespace MediaBrowser.Controller.Library
|
||||
QueryResult<Tuple<BaseItem, ItemCounts>> GetAlbumArtists(InternalItemsQuery query);
|
||||
QueryResult<Tuple<BaseItem, ItemCounts>> GetAllArtists(InternalItemsQuery query);
|
||||
|
||||
void RegisterIgnoredPath(string path);
|
||||
void UnRegisterIgnoredPath(string path);
|
||||
int GetCount(InternalItemsQuery query);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user