Skip to content

Commit

Permalink
fix: changed to speed mode by default for downloaders
Browse files Browse the repository at this point in the history
  • Loading branch information
dreulavelle committed Sep 30, 2024
1 parent 5a81a0c commit 7aeca0b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/program/settings/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class TorboxModel(Observable):

class DownloadersModel(Observable):
video_extensions: List[str] = ["mp4", "mkv", "avi"]
prefer_speed_over_quality: bool = False
prefer_speed_over_quality: bool = True
# movie_filesize_min: int = 200 # MB
# movie_filesize_max: int = -1 # MB (-1 is no limit)
# episode_filesize_min: int = 40 # MB
Expand Down Expand Up @@ -233,7 +233,8 @@ class MediafusionConfig(Observable):
ratelimit: bool = True
catalogs: List[str] = [
"prowlarr_streams",
"torrentio_streams"
"torrentio_streams",
"zilean_dmm_streams"
]

class OrionoidConfig(Observable):
Expand Down

0 comments on commit 7aeca0b

Please sign in to comment.