Skip to content

Commit

Permalink
fix: changed default update interval from 5m to 24h on content list s…
Browse files Browse the repository at this point in the history
…ervices
  • Loading branch information
dreulavelle committed Oct 18, 2024
1 parent 612964e commit 7074fb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/program/settings/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ class ListrrModel(Updatable):
movie_lists: List[str] = []
show_lists: List[str] = []
api_key: str = ""
update_interval: int = 300
update_interval: int = 86400


class MdblistModel(Updatable):
enabled: bool = False
api_key: str = ""
lists: List[int | str] = []
update_interval: int = 300
update_interval: int = 86400


class OverseerrModel(Updatable):
Expand Down Expand Up @@ -174,7 +174,7 @@ class TraktModel(Updatable):
trending_count: int = 10
fetch_popular: bool = False
popular_count: int = 10
update_interval: int = 300
update_interval: int = 86400
# oauth: TraktOauthModel = TraktOauthModel()


Expand Down

0 comments on commit 7074fb0

Please sign in to comment.