Skip to content

Commit 0bc51a7

Browse files
authored
Update search_games.go
1 parent a4e47c0 commit 0bc51a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

search/games/search_games.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func buildManticoreSearchRequest(dto *schema.GameSearchRequestDto) (string, erro
9898
paginationString := buildManticorePaginationString(dto)
9999
orderString := buildManticoreOrderString()
100100

101-
selectString := fmt.Sprintf("SELECT * FROM games WHERE match('%s') %s %s %s OPTION fuzzy=1;", matchString, filterString, orderString, paginationString)
101+
selectString := fmt.Sprintf("SELECT * FROM games WHERE match('%s') OPTION fuzzy=1;", matchString)
102102

103103
return selectString, nil
104104

0 commit comments

Comments
 (0)