Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
JackDandy committed Mar 3, 2024
2 parents 7565d05 + d19c8fe commit a247209
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
* Fix media process being ignored by Plex extras


### 3.30.13 (2024-03-03 23:30:00 UTC)

* Fix Shows/"Next Episode Cards" change to Trending
* Fix unnecessary conversion of datetime object into str and back


### 3.30.12 (2024-03-03 22:30:00 UTC)

* Fix menu Shows/"Next Episode Cards"
Expand Down
4 changes: 2 additions & 2 deletions sickgear/webserve.py
Original file line number Diff line number Diff line change
Expand Up @@ -5187,7 +5187,7 @@ def browse_ne(self, url_path, browse_title, **kwargs):
started_past = False
params = f'premiering_period={("1", "2")["2" in url_path]}&sort=2'
url_path = 'upcoming'
elif 'trending' in url_path:
elif 'trends' in url_path:
params = 'trending_within=2'
else:
params = f'chart_type={("most_popular", "top_rated")["Top" in browse_title]}&premiered_within=2'
Expand Down Expand Up @@ -5255,7 +5255,7 @@ def browse_ne(self, url_path, browse_title, **kwargs):
age_args['days'] -= 1
dt += relativedelta(day=1)
dt += relativedelta(**age_args)
date_info = SGDatetime.sbfdate(dt)
date_info = dt

ord_premiered = 0
str_premiered = ''
Expand Down

0 comments on commit a247209

Please sign in to comment.