mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
tautulli fix
This commit is contained in:
parent
e2f27c14d4
commit
bee1f03b0a
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class Tautulli:
|
|||
logger.info(f"Processing Tautulli Most {params['list_type'].capitalize()}: {params['list_size']} {'Movies' if library.is_movie else 'Shows'}")
|
||||
response = self._request(f"{self.url}/api/v2?apikey={self.apikey}&cmd=get_home_stats&time_range={params['list_days']}&stats_count={query_size}")
|
||||
stat_id = f"{'popular' if params['list_type'] == 'popular' else 'top'}_{'movies' if library.is_movie else 'tv'}"
|
||||
stat_type = "total_plays" if params['list_type'] == 'popular' else "users_watched"
|
||||
stat_type = "users_watched" if params['list_type'] == 'popular' else "total_plays"
|
||||
|
||||
items = None
|
||||
for entry in response["response"]["data"]:
|
||||
|
|
Loading…
Reference in a new issue