mirror of
https://github.com/Neetpone/foalfetch.git
synced 2025-02-12 11:24:21 +01:00
fix: fix typo making tag search not work
This commit is contained in:
parent
ad03c88a97
commit
0a3a2edcf0
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ class SearchController < ApplicationController
|
|||
|
||||
# returns: [included tags, excluded tags]
|
||||
def parse_tag_queries
|
||||
tag_searches = "#{@search_params[:tas]},#{@search_params[:characters]}".split(',').reject(&:blank?)
|
||||
tag_searches = "#{@search_params[:tags]},#{@search_params[:characters]}".split(',').reject(&:blank?)
|
||||
|
||||
[
|
||||
tag_searches.reject { |t| t[0] == '-' },
|
||||
|
|
Loading…
Reference in a new issue