mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Use optional query for watch page
This commit is contained in:
parent
e2c50d4d1f
commit
10c1cfa4b5
1 changed files with 3 additions and 7 deletions
|
@ -217,17 +217,13 @@ get "/watch" do |env|
|
||||||
|
|
||||||
authorized = env.get? "authorized"
|
authorized = env.get? "authorized"
|
||||||
if authorized
|
if authorized
|
||||||
headers = HTTP::Headers.new
|
|
||||||
headers["Cookie"] = env.request.headers["Cookie"]
|
|
||||||
|
|
||||||
sid = env.get("sid").as(String)
|
sid = env.get("sid").as(String)
|
||||||
|
|
||||||
user = get_user(sid, client, headers, PG_DB)
|
subscriptions = PG_DB.query_one?("SELECT subscriptions FROM users WHERE id = $1", sid, as: Array(String))
|
||||||
subscriptions = user.subscriptions
|
|
||||||
else
|
|
||||||
subscriptions = [] of String
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
subscriptions = [] of String
|
||||||
|
|
||||||
begin
|
begin
|
||||||
video = get_video(id, client, PG_DB)
|
video = get_video(id, client, PG_DB)
|
||||||
rescue ex
|
rescue ex
|
||||||
|
|
Loading…
Reference in a new issue