Skip to content

Commit

Permalink
Remove validation for Trakt Trending List
Browse files Browse the repository at this point in the history
  • Loading branch information
mza921 committed Nov 5, 2020
1 parent 48e722e commit eb9f3ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.4.4] - 2020-11-05 - [#96](https://github.com/mza921/Plex-Auto-Collections/pull/96)
### Fixed
- [#94](https://github.com/mza921/Plex-Auto-Collections/issues/94) - Fixed Trakt Trending (again)

## [2.4.3] - 2020-11-05 - [#96](https://github.com/mza921/Plex-Auto-Collections/pull/96)
### Fixed
- [#93](https://github.com/mza921/Plex-Auto-Collections/issues/93) - fixed max_age
Expand Down
2 changes: 1 addition & 1 deletion app/plex_auto_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ def append_collection(config_path, config_update=None):
print("| |_| |_|\___|/_\_\ /_/ \_\\\\_,_| \__|\___/ \___|\___/|_||_|\___|\__| \__||_|\___/|_||_|/__/ |")
print("| |")
print("|===================================================================================================|")
print("| Version 2.4.3")
print("| Version 2.4.4")
print("| Locating config...")
config_path = None
app_dir = os.path.dirname(os.path.abspath(__file__))
Expand Down
2 changes: 1 addition & 1 deletion app/trakt_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def trakt_get_shows(config_path, plex, data, is_userlist=True):
trakt_list_items = trakt.Trakt[trakt_list_path].items()
else:
# Trending list
max_items = int(regex_first_int(data, "Trakt Trending number"))
max_items = int(data)
trakt_list_items = trakt.Trakt['shows'].trending(per_page=max_items)

tvdb_map = {}
Expand Down

0 comments on commit eb9f3ed

Please sign in to comment.