From aff2083529d2bb52cc97c958f30be2bcdd5b7eb9 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Thu, 6 Sep 2018 18:18:36 -0500 Subject: [PATCH] Fix missing 'end' --- src/invidious.cr | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/invidious.cr b/src/invidious.cr index 58525f262..68a383669 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -1912,7 +1912,7 @@ get "/api/v1/comments/:id" do |env| url = URI.parse(url) if url.path == "/redirect" - url = HTTP::Params.parse(url.query.not_nil!)["q"] + url = HTTP::Params.parse(url.query.not_nil!)["q"] end else url = run["navigationEndpoint"]["commandMetadata"]?.try &.["webCommandMetadata"]["url"].as_s @@ -2036,9 +2036,10 @@ get "/api/v1/comments/:id" do |env| else next { "title" => reddit_thread.title, - "permalink" => reddit_thread.permalink, - "contentHtml" => content_html, - }.to_json + "permalink" => reddit_thread.permalink, + "contentHtml" => content_html, + }.to_json + end end end