Add fix for testing authentication

This commit is contained in:
Omar Roth 2018-03-24 22:56:41 -05:00
parent 908543dd62
commit 15f4d95ab4
2 changed files with 4 additions and 4 deletions

View file

@ -164,8 +164,8 @@ spawn do
end
end
before_get do |env|
if env.request.cookies["SID"]?
before_all do |env|
if env.request.cookies.has_key?("SID")
env.set "authorized", true
else
env.set "authorized", false
@ -551,7 +551,7 @@ end
# Get subscriptions for authorized user
get "/feed/subscriptions" do |env|
authorized = env.get "authorized"
authorized = env.get? "authorized"
if authorized
max_results = env.params.query["maxResults"]?.try &.to_i