fix(discussion list): quote author qualifier in web mode
Signed-off-by: Babak K. Shandiz <babakks@github.com>
This commit is contained in:
parent
8d70cc9ca8
commit
f62875fb63
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ func openInBrowser(opts *ListOptions, repo ghrepo.Interface) error {
|
|||
queryParts = append(queryParts, "is:"+opts.State)
|
||||
}
|
||||
if opts.Author != "" {
|
||||
queryParts = append(queryParts, "author:"+opts.Author)
|
||||
queryParts = append(queryParts, fmt.Sprintf("author:%q", opts.Author))
|
||||
}
|
||||
for _, l := range opts.Labels {
|
||||
queryParts = append(queryParts, fmt.Sprintf("label:%q", l))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue