Fallback on ucid for channel search when author contains hyphen

This commit is contained in:
Omar Roth 2019-01-25 12:26:16 -06:00
parent 06aa1bb90f
commit 898b768b30
1 changed files with 1 additions and 1 deletions

View File

@ -2192,7 +2192,7 @@ get "/channel/:ucid" do |env|
end
if !auto_generated
if author.includes? " "
if author.includes?(" ") || author.includes?("-")
env.set "search", "channel:#{ucid} "
else
env.set "search", "channel:#{author.downcase} "