Skip to content

Commit dd997b4

Browse files
authored
Merge pull request #46 from smartystreets/eric/fix-max-results
Resolve MaxResults Parameter Issue
2 parents d056f7b + e5d2565 commit dd997b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sdk/InternationalAutcompleteApi/Lookup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Lookup(string search) : this()
4444

4545
#endregion
4646

47-
internal string MaxSuggestionsString => this.MaxResults.Equals(MAX_RESULTS_DEFAULT) ? null : this.MaxResults.ToString();
47+
internal string MaxSuggestionsString => this.MaxResults.ToString();
4848

4949
}
5050
}

0 commit comments

Comments
 (0)