dev: switch Serienstream genres to strict page-on-demand flow
This commit is contained in:
@@ -2280,9 +2280,13 @@ def _show_category_titles_page(plugin_name: str, category: str, page: int = 1) -
|
||||
titles.sort(key=lambda value: value.casefold())
|
||||
|
||||
if titles:
|
||||
use_source, show_tmdb, prefer_source = _metadata_policy(
|
||||
plugin_name, plugin, allow_tmdb=_tmdb_list_enabled()
|
||||
)
|
||||
minimal_genre_list = _plugin_has_capability(plugin, "minimal_genre_list")
|
||||
if minimal_genre_list:
|
||||
use_source, show_tmdb, prefer_source = True, False, True
|
||||
else:
|
||||
use_source, show_tmdb, prefer_source = _metadata_policy(
|
||||
plugin_name, plugin, allow_tmdb=_tmdb_list_enabled()
|
||||
)
|
||||
plugin_meta = _collect_plugin_metadata(plugin, titles) if use_source else {}
|
||||
show_plot = _get_setting_bool("tmdb_show_plot", default=True)
|
||||
show_art = _get_setting_bool("tmdb_show_art", default=True)
|
||||
|
||||
Reference in New Issue
Block a user