mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
General cleanup
This commit is contained in:
parent
609ad873bc
commit
f79825fc80
1 changed files with 4 additions and 7 deletions
|
@ -244,15 +244,13 @@ get "/watch" do |env|
|
||||||
|
|
||||||
if env.params.query["start"]?
|
if env.params.query["start"]?
|
||||||
video_start = decode_time(env.params.query["start"])
|
video_start = decode_time(env.params.query["start"])
|
||||||
else
|
|
||||||
video_start = 0
|
|
||||||
end
|
end
|
||||||
|
video_start ||= 0
|
||||||
|
|
||||||
if env.params.query["end"]?
|
if env.params.query["end"]?
|
||||||
video_end = decode_time(env.params.query["end"])
|
video_end = decode_time(env.params.query["end"])
|
||||||
else
|
|
||||||
video_end = -1
|
|
||||||
end
|
end
|
||||||
|
video_end ||= -1
|
||||||
|
|
||||||
if env.params.query["listen"]? && env.params.query["listen"] == "true"
|
if env.params.query["listen"]? && env.params.query["listen"] == "true"
|
||||||
listen = true
|
listen = true
|
||||||
|
@ -266,7 +264,6 @@ get "/watch" do |env|
|
||||||
|
|
||||||
subscriptions = PG_DB.query_one?("SELECT subscriptions FROM users WHERE id = $1", sid, as: Array(String))
|
subscriptions = PG_DB.query_one?("SELECT subscriptions FROM users WHERE id = $1", sid, as: Array(String))
|
||||||
end
|
end
|
||||||
|
|
||||||
subscriptions ||= [] of String
|
subscriptions ||= [] of String
|
||||||
|
|
||||||
client = make_client(YT_URL)
|
client = make_client(YT_URL)
|
||||||
|
@ -748,8 +745,8 @@ get "/feed/subscriptions" do |env|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Function that is useful if you have multiple channels that don't have
|
# Function that is useful if you have multiple channels that don't have
|
||||||
# the "bell dinged". Request parameters are fairly self-explanatory,
|
# the bell dinged. Request parameters are fairly self-explanatory,
|
||||||
# receive_all_updates = true and receive_post_updates = true will "ding" all
|
# receive_all_updates = true and receive_post_updates = true will ding all
|
||||||
# channels. Calling /modify_notifications without any arguments will
|
# channels. Calling /modify_notifications without any arguments will
|
||||||
# request all notifications from all channels.
|
# request all notifications from all channels.
|
||||||
# /modify_notifications?receive_all_updates=false&receive_no_updates=false
|
# /modify_notifications?receive_all_updates=false&receive_no_updates=false
|
||||||
|
|
Loading…
Reference in a new issue