diff options
| author | theguymadmax <theguymadmax@proton.me> | 2025-06-24 19:48:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-24 17:48:36 -0600 |
| commit | 7d18f3d6edf54421ffcecf233d7cb1f873b8a408 (patch) | |
| tree | e3d507d8e0767a856a26a7c301499465ff08bfdd /MediaBrowser.Providers/Plugins/Tmdb/Configuration/PluginConfiguration.cs | |
| parent | 9b8c12d4336fdf327d8fcdcd38cf9bb9c1e71716 (diff) | |
Improve cast and crew handling (#14370)
Diffstat (limited to 'MediaBrowser.Providers/Plugins/Tmdb/Configuration/PluginConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Providers/Plugins/Tmdb/Configuration/PluginConfiguration.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Plugins/Tmdb/Configuration/PluginConfiguration.cs b/MediaBrowser.Providers/Plugins/Tmdb/Configuration/PluginConfiguration.cs index 99b759ae2..f11b1d95a 100644 --- a/MediaBrowser.Providers/Plugins/Tmdb/Configuration/PluginConfiguration.cs +++ b/MediaBrowser.Providers/Plugins/Tmdb/Configuration/PluginConfiguration.cs @@ -39,6 +39,21 @@ namespace MediaBrowser.Providers.Plugins.Tmdb public int MaxCastMembers { get; set; } = 15; /// <summary> + /// Gets or sets a value indicating the maximum number of crew members to fetch for an item. + /// </summary> + public int MaxCrewMembers { get; set; } = 15; + + /// <summary> + /// Gets or sets a value indicating whether to hide cast members without profile images. + /// </summary> + public bool HideMissingCastMembers { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether to hide crew members without profile images. + /// </summary> + public bool HideMissingCrewMembers { get; set; } + + /// <summary> /// Gets or sets a value indicating the poster image size to fetch. /// </summary> public string? PosterSize { get; set; } |
