diff options
| author | syeopite <70992037+syeopite@users.noreply.github.com> | 2024-08-24 18:11:11 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-24 18:11:11 +0000 |
| commit | ccecc6d318ea80b2af3bf379b33700dcb6e16c97 (patch) | |
| tree | 6cc130ed360b78709d960bbbf7390261aa2312a0 | |
| parent | 3c6a662aaffe05b534da9c6cb2ed1b36e120d71a (diff) | |
| download | invidious-ccecc6d318ea80b2af3bf379b33700dcb6e16c97.tar.gz invidious-ccecc6d318ea80b2af3bf379b33700dcb6e16c97.tar.bz2 invidious-ccecc6d318ea80b2af3bf379b33700dcb6e16c97.zip | |
Fix lint errors introduced in #4146 and #4295 (#4876)
* Ameba: Fix Naming/VariableNames
Introduced in #4295
* Ameba: Fix Naming/PredicateName
Introduced in #4146
| -rw-r--r-- | src/invidious/channels/about.cr | 6 | ||||
| -rw-r--r-- | src/invidious/routes/search.cr | 2 | ||||
| -rw-r--r-- | src/invidious/search/query.cr | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/invidious/channels/about.cr b/src/invidious/channels/about.cr index 1380044a..13909527 100644 --- a/src/invidious/channels/about.cr +++ b/src/invidious/channels/about.cr @@ -50,12 +50,12 @@ def get_about_info(ucid, locale) : AboutChannel total_views = 0_i64 joined = Time.unix(0) - if ageGate = initdata.dig?("contents", "twoColumnBrowseResultsRenderer", "tabs", 0, "tabRenderer", "content", "sectionListRenderer", "contents", 0, "channelAgeGateRenderer") + if age_gate_renderer = initdata.dig?("contents", "twoColumnBrowseResultsRenderer", "tabs", 0, "tabRenderer", "content", "sectionListRenderer", "contents", 0, "channelAgeGateRenderer") description_node = nil - author = ageGate["channelTitle"].as_s + author = age_gate_renderer["channelTitle"].as_s ucid = initdata.dig("responseContext", "serviceTrackingParams", 0, "params", 0, "value").as_s author_url = "https://www.youtube.com/channel/#{ucid}" - author_thumbnail = ageGate.dig("avatar", "thumbnails", 0, "url").as_s + author_thumbnail = age_gate_renderer.dig("avatar", "thumbnails", 0, "url").as_s banner = nil is_family_friendly = false is_age_gated = true diff --git a/src/invidious/routes/search.cr b/src/invidious/routes/search.cr index 85aa1c7e..44970922 100644 --- a/src/invidious/routes/search.cr +++ b/src/invidious/routes/search.cr @@ -53,7 +53,7 @@ module Invidious::Routes::Search # An URL was copy/pasted in the search box. # Redirect the user to the appropriate page. - if query.is_url? + if query.url? return env.redirect UrlSanitizer.process(query.text).to_s end diff --git a/src/invidious/search/query.cr b/src/invidious/search/query.cr index a93bb3f9..c8e8cf7f 100644 --- a/src/invidious/search/query.cr +++ b/src/invidious/search/query.cr @@ -149,7 +149,7 @@ module Invidious::Search end # Checks if the query is a standalone URL - def is_url? : Bool + def url? : Bool # If the smart features have been inhibited, don't go further. return false if @inhibit_ssf |
