Skip to content

Commit

Permalink
Fix translation of default process CommandLine filter key. (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
jander-msft authored Jun 2, 2021
1 parent 22b9783 commit a99ec90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private static DiagProcessFilterEntry TransformDescriptor(ProcessFilterDescripto
case ProcessFilterKey.CommandLine:
return new DiagProcessFilterEntry
{
Criteria = DiagProcessFilterCriteria.ProcessName,
Criteria = DiagProcessFilterCriteria.CommandLine,
MatchType = (processFilterDescriptor.MatchType == ProcessFilterType.Exact) ? DiagProcessFilterMatchType.Exact : DiagProcessFilterMatchType.Contains,
Value = processFilterDescriptor.Value
};
Expand Down

0 comments on commit a99ec90

Please sign in to comment.