From 1085ca4a2df7565f559512cddc2203d1fbad041e Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sun, 22 Sep 2019 09:54:54 -0400 Subject: [PATCH] Fix typo in Google login --- src/invidious.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/invidious.cr b/src/invidious.cr index 4016d07c..b97aa6b2 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -1059,7 +1059,7 @@ post "/login" do |env| end # TODO: Handle Google's CAPTCHA - if captcha = challenge_results[0][-1]?.try &.[-1]?.try &.["5001"]?.try &.[-1].as_a? + if captcha = challenge_results[0][-1]?.try &.[-1]?.try &.as_h?.try &.["5001"]?.try &.[-1].as_a? error_message = "Unhandled CAPTCHA. Please try again later." env.response.status_code = 401 next templated "error"