Skip to content

Commit

Permalink
Activate filter targets for grr & grrui on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
awaescher committed Apr 4, 2019
1 parent 6e675a7 commit 0c4fb20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RepoZ.App.Mac/AppDelegate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public Ipc.Repository[] GetMatchingRepositories(string repositoryNamePattern)
{
var aggregator = TinyIoCContainer.Current.Resolve<IRepositoryInformationAggregator>();
return aggregator.Repositories
.Where(r => string.IsNullOrEmpty(repositoryNamePattern) || Regex.IsMatch(r.Name, repositoryNamePattern, RegexOptions.IgnoreCase))
.Where(r => r.MatchesRegexFilter(repositoryNamePattern))
.Select(r => new Ipc.Repository
{
Name = r.Name,
Expand Down

0 comments on commit 0c4fb20

Please sign in to comment.