aboutsummaryrefslogtreecommitdiffstats
path: root/youtube
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-08-01 00:28:51 -0700
committerJames Taylor <user234683@users.noreply.github.com>2019-08-01 00:28:51 -0700
commitba0809b965fdf19190fc4a5f8ddee5f6ae9cb905 (patch)
tree0d4d5e17447c289ba052c025c735b5e0eb76ce4b /youtube
parent865e5a6bce786824add16a852043f3a36cdbb630 (diff)
downloadyt-local-ba0809b965fdf19190fc4a5f8ddee5f6ae9cb905.tar.lz
yt-local-ba0809b965fdf19190fc4a5f8ddee5f6ae9cb905.tar.xz
yt-local-ba0809b965fdf19190fc4a5f8ddee5f6ae9cb905.zip
rename enable_comments amd enable_related_videos
Diffstat (limited to 'youtube')
-rw-r--r--youtube/comments.py2
-rw-r--r--youtube/watch.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/youtube/comments.py b/youtube/comments.py
index 4485ad2..3b1ef86 100644
--- a/youtube/comments.py
+++ b/youtube/comments.py
@@ -221,7 +221,7 @@ def post_process_comments_info(comments_info):
def video_comments(video_id, sort=0, offset=0, lc='', secret_key=''):
- if settings.enable_comments:
+ if settings.comments_mode:
comments_info = parse_comments_polymer(request_comments(make_comment_ctoken(video_id, sort, offset, lc, secret_key)))
post_process_comments_info(comments_info)
diff --git a/youtube/watch.py b/youtube/watch.py
index e324115..5487dd4 100644
--- a/youtube/watch.py
+++ b/youtube/watch.py
@@ -170,7 +170,7 @@ def get_watch_page():
upload_day = info["upload_date"][6:8]
upload_date = upload_month + "/" + upload_day + "/" + upload_year
- if settings.enable_related_videos:
+ if settings.related_videos_mode:
related_videos = get_related_items(info)
else:
related_videos = []