mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-08 13:42:27 +05:30
Fix Ameba error
This commit is contained in:
parent
6218eb2b22
commit
4ae86e6ac3
@ -69,13 +69,13 @@ module Invidious::Routes::API::V1::Search
|
|||||||
env.response.content_type = "application/json"
|
env.response.content_type = "application/json"
|
||||||
|
|
||||||
begin
|
begin
|
||||||
hashtagPage = Invidious::Hashtag.fetch(hashtag, page, region)
|
hashtag_page = Invidious::Hashtag.fetch(hashtag, page, region)
|
||||||
rescue ex
|
rescue ex
|
||||||
return error_json(400, ex)
|
return error_json(400, ex)
|
||||||
end
|
end
|
||||||
|
|
||||||
JSON.build do |json|
|
JSON.build do |json|
|
||||||
hashtagPage.to_json(locale, json)
|
hashtag_page.to_json(locale, json)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -101,8 +101,8 @@ module Invidious::Routes::Search
|
|||||||
end
|
end
|
||||||
|
|
||||||
begin
|
begin
|
||||||
hashtagPage = Invidious::Hashtag.fetch(hashtag, page)
|
hashtag_page = Invidious::Hashtag.fetch(hashtag, page)
|
||||||
items = hashtagPage.videos
|
items = hashtag_page.videos
|
||||||
rescue ex
|
rescue ex
|
||||||
return error_template(500, ex)
|
return error_template(500, ex)
|
||||||
end
|
end
|
||||||
@ -112,7 +112,7 @@ module Invidious::Routes::Search
|
|||||||
page_nav_html = Frontend::Pagination.nav_numeric(locale,
|
page_nav_html = Frontend::Pagination.nav_numeric(locale,
|
||||||
base_url: "/hashtag/#{hashtag_encoded}",
|
base_url: "/hashtag/#{hashtag_encoded}",
|
||||||
current_page: page,
|
current_page: page,
|
||||||
show_next: hashtagPage.has_next_continuation
|
show_next: hashtag_page.has_next_continuation
|
||||||
)
|
)
|
||||||
|
|
||||||
templated "hashtag"
|
templated "hashtag"
|
||||||
|
Loading…
Reference in New Issue
Block a user