From cf63c825d4e0b34d9b07c12d468ff9be2596d740 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Thu, 6 Sep 2018 16:45:15 -0500 Subject: [PATCH] Add fix for shortened youtu.be links in comments --- src/invidious.cr | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/invidious.cr b/src/invidious.cr index ebd1b76ac..58525f262 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -1816,6 +1816,7 @@ get "/api/v1/comments/:id" do |env| body = html.body session_token = body.match(/'XSRF_TOKEN': "(?[A-Za-z0-9\_\-\=]+)"/).not_nil!["session_token"] ctoken = body.match(/'COMMENTS_TOKEN': "(?[^"]+)"/) + if !ctoken env.response.content_type = "application/json" @@ -1909,7 +1910,10 @@ get "/api/v1/comments/:id" do |env| url = run["navigationEndpoint"]["urlEndpoint"]?.try &.["url"].as_s if url url = URI.parse(url) + + if url.path == "/redirect" url = HTTP::Params.parse(url.query.not_nil!)["q"] + end else url = run["navigationEndpoint"]["commandMetadata"]?.try &.["webCommandMetadata"]["url"].as_s end