From aead38124d26602356ae1be471d9ab3433335133 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Mon, 8 Sep 2025 17:05:08 -0300 Subject: [PATCH] Update src/invidious/videos/parser.cr Co-authored-by: syeopite <70992037+syeopite@users.noreply.github.com> --- src/invidious/videos/parser.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/invidious/videos/parser.cr b/src/invidious/videos/parser.cr index fb10bf340..6b1dedd69 100644 --- a/src/invidious/videos/parser.cr +++ b/src/invidious/videos/parser.cr @@ -104,7 +104,7 @@ def extract_video_info(video_id : String) next_response = YoutubeAPI.next({"videoId": video_id, "params": ""}) # Remove the microformat returned by the /next endpoint on some videos # to prevent player_response microformat from being overwritten. - next_response.reject!("microformat") + next_response.delete("microformat") player_response = player_response.merge(next_response) end