From 76369eb599ff3ae8a1fd89e6c2d1ae745b1276e3 Mon Sep 17 00:00:00 2001 From: RadoslavL Date: Wed, 8 Nov 2023 10:18:29 +0200 Subject: [PATCH] Removed unused attribute --- src/invidious/videos/parser.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/invidious/videos/parser.cr b/src/invidious/videos/parser.cr index 52623051..275395df 100644 --- a/src/invidious/videos/parser.cr +++ b/src/invidious/videos/parser.cr @@ -93,7 +93,7 @@ def extract_video_info(video_id : String, proxy_region : String? = nil) player_response = player_response.merge(next_response) end - params = parse_video_info(video_id, player_response, proxy_region) + params = parse_video_info(video_id, player_response) params["reason"] = JSON::Any.new(reason) if reason new_player_response = nil @@ -158,7 +158,7 @@ def try_fetch_streaming_data(id : String, client_config : YoutubeAPI::ClientConf end end -def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any), proxy_region : String? = nil) : Hash(String, JSON::Any) +def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any)) : Hash(String, JSON::Any) # Top level elements main_results = player_response.dig?("contents", "twoColumnWatchNextResults")