mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-09 21:09:51 +00:00
Double quote issue labels in search API (#2084)
This commit is contained in:
@@ -328,7 +328,7 @@ namespace Octokit
|
||||
|
||||
if (Labels != null)
|
||||
{
|
||||
parameters.AddRange(Labels.Select(label => string.Format(CultureInfo.InvariantCulture, "label:{0}", label)));
|
||||
parameters.AddRange(Labels.Select(label => string.Format(CultureInfo.InvariantCulture, "label:\"{0}\"", label)));
|
||||
}
|
||||
|
||||
if (No.HasValue)
|
||||
|
||||
Reference in New Issue
Block a user