diff options
author | Astound <kirito@disroot.org> | 2024-01-22 05:55:59 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-01-22 05:55:59 +0800 |
commit | ca4a7356924450f21228e823b4bcc1416aea05d3 (patch) | |
tree | 4078c2b3b0b3aab29bd2f7fca58e8ce74f65e48a /settings.py | |
parent | 2140f489192f98284811e7cbaba8b6fa0e552bf7 (diff) | |
download | yt-local-ca4a7356924450f21228e823b4bcc1416aea05d3.tar.lz yt-local-ca4a7356924450f21228e823b4bcc1416aea05d3.tar.xz yt-local-ca4a7356924450f21228e823b4bcc1416aea05d3.zip |
Add settings for filtering out shorts in subscriptions and channels
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/settings.py b/settings.py index 16ec6ff..c3c07e6 100644 --- a/settings.py +++ b/settings.py @@ -298,6 +298,18 @@ Archive: https://archive.ph/OZQbN''', 'comment': '', }), + ('include_shorts_in_subscriptions', { + 'type': bool, + 'default': 0, + 'comment': '', + }), + + ('include_shorts_in_channel', { + 'type': bool, + 'default': 1, + 'comment': '', + }), + ('gather_googlevideo_domains', { 'type': bool, 'default': False, |