mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Rename a variable in videos.cr
This commit is contained in:
parent
162b89d942
commit
6251d8d43f
1 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
def produce_channel_content_continuation(ucid, content, page = 1, auto_generated = nil, sort_by = "newest", v2 = false)
|
def produce_channel_content_continuation(ucid, content_type, page = 1, auto_generated = nil, sort_by = "newest", v2 = false)
|
||||||
object_inner_2 = {
|
object_inner_2 = {
|
||||||
"2:0:embedded" => {
|
"2:0:embedded" => {
|
||||||
"1:0:varint" => 0_i64,
|
"1:0:varint" => 0_i64,
|
||||||
|
@ -16,8 +16,8 @@ def produce_channel_content_continuation(ucid, content, page = 1, auto_generated
|
||||||
.try { |i| Base64.urlsafe_encode(i) }
|
.try { |i| Base64.urlsafe_encode(i) }
|
||||||
.try { |i| URI.encode_www_form(i) }
|
.try { |i| URI.encode_www_form(i) }
|
||||||
|
|
||||||
content_numerical =
|
content_type_numerical =
|
||||||
case content
|
case content_type
|
||||||
when "videos" then 15
|
when "videos" then 15
|
||||||
when "livestreams" then 14
|
when "livestreams" then 14
|
||||||
else 15 # Fallback to "videos"
|
else 15 # Fallback to "videos"
|
||||||
|
@ -34,7 +34,7 @@ def produce_channel_content_continuation(ucid, content, page = 1, auto_generated
|
||||||
object_inner_1 = {
|
object_inner_1 = {
|
||||||
"110:embedded" => {
|
"110:embedded" => {
|
||||||
"3:embedded" => {
|
"3:embedded" => {
|
||||||
"#{content_numerical}:embedded" => {
|
"#{content_type_numerical}:embedded" => {
|
||||||
"1:embedded" => {
|
"1:embedded" => {
|
||||||
"1:string" => object_inner_2_encoded,
|
"1:string" => object_inner_2_encoded,
|
||||||
},
|
},
|
||||||
|
@ -69,8 +69,8 @@ def produce_channel_content_continuation(ucid, content, page = 1, auto_generated
|
||||||
return continuation
|
return continuation
|
||||||
end
|
end
|
||||||
|
|
||||||
def make_initial_content_ctoken(ucid, content, sort_by) : String
|
def make_initial_content_ctoken(ucid, content_type, sort_by) : String
|
||||||
return produce_channel_content_continuation(ucid, content, sort_by: sort_by)
|
return produce_channel_content_continuation(ucid, content_type, sort_by: sort_by)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Used in bypass_captcha_job.cr
|
# Used in bypass_captcha_job.cr
|
||||||
|
|
Loading…
Reference in a new issue