summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew McGarvey <matthewmcgarvey14@gmail.com>2022-01-25 11:35:19 -0600
committerGitHub <noreply@github.com>2022-01-25 11:35:19 -0600
commitc5967ad572191ad7b99dec08111974b04dffc6d0 (patch)
tree857a4483aae1a6a23fce8bd9ac2652e8a4ccb15a
parent574e35a720adea4132ae91ce1c70ca0c34461d6c (diff)
downloadinvidious-c5967ad572191ad7b99dec08111974b04dffc6d0.tar.gz
invidious-c5967ad572191ad7b99dec08111974b04dffc6d0.tar.bz2
invidious-c5967ad572191ad7b99dec08111974b04dffc6d0.zip
will -> should
Co-authored-by: Samantaz Fox <coding@samantaz.fr>
-rw-r--r--src/invidious/routes/search.cr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious/routes/search.cr b/src/invidious/routes/search.cr
index 19f33a40..5e606adf 100644
--- a/src/invidious/routes/search.cr
+++ b/src/invidious/routes/search.cr
@@ -56,7 +56,7 @@ module Invidious::Routes::Search
begin
search_query, count, videos, operators = process_search_query(query, page, user, region: region)
rescue ex : ChannelSearchException
- return error_template(404, "Unable to find channel with id of '#{HTML.escape(ex.channel)}'. Are you sure that's an actual channel id? It will look like 'UC4QobU6STFB0P71PMvOGN5A'.")
+ return error_template(404, "Unable to find channel with id of '#{HTML.escape(ex.channel)}'. Are you sure that's an actual channel id? It should look like 'UC4QobU6STFB0P71PMvOGN5A'.")
rescue ex
return error_template(500, ex)
end