remove unused variable

simplify resolve url

remove trailing spaces

Co-Authored-By: Samantaz Fox <coding@samantaz.fr>
このコミットが含まれているのは:
ChunkyProgrammer 2023-09-26 19:05:37 -04:00
コミット 4f25069f55
3個のファイルの変更3行の追加4行の削除

ファイルの表示

@ -131,7 +131,7 @@ function get_youtube_replies(target, load_more, load_replies) {
'&hl=' + video_data.preferences.locale +
'&thin_mode=' + video_data.preferences.thin_mode +
'&continuation=' + continuation;
if (video_data.ucid) {
url += '&ucid=' + video_data.ucid
}

ファイルの表示

@ -373,7 +373,6 @@ module Invidious::Routes::API::V1::Channels
def self.post_comments(env)
locale = env.get("preferences").as(Preferences).locale
region = env.params.query["region"]?
env.response.content_type = "application/json"

ファイルの表示

@ -173,8 +173,8 @@ module Invidious::Routes::API::V1::Misc
end
JSON.build do |json|
json.object do
json.field "ucid", sub_endpoint["browseId"].try &.as_s if sub_endpoint["browseId"]?
json.field "videoId", sub_endpoint["videoId"].try &.as_s if sub_endpoint["videoId"]?
json.field "ucid", sub_endpoint["browseId"].as_s if sub_endpoint["browseId"]?
json.field "videoId", sub_endpoint["videoId"].as_s if sub_endpoint["videoId"]?
json.field "params", params.try &.as_s
json.field "pageType", pageType
end