Skip to content

Commit

Permalink
increase maximum query length
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 committed Jul 13, 2024
1 parent 2c543a2 commit 9d7c47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CorpusSearch/Model/CorpusSearchWorkQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class CorpusSearchWorkQuery(string query)

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

0 comments on commit 9d7c47a

Please sign in to comment.