Skip to content

Commit

Permalink
increase maximum query length (#231)
Browse files Browse the repository at this point in the history
When I was searching for matches, this got in the way
  • Loading branch information
david-allison authored Jul 13, 2024
1 parent 9d7c47a commit 9fe348a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CorpusSearch/Model/CorpusSearchQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class CorpusSearchQuery(string query)

internal bool IsValid()
{
if (string.IsNullOrWhiteSpace(Query) || Query.Length > 30)
if (string.IsNullOrWhiteSpace(Query) || Query.Length > 100)
{
return false;
}
Expand Down

0 comments on commit 9fe348a

Please sign in to comment.