Skip to content

Commit

Permalink
Fixed a bug wherein search filters piped to PrtgTableCmdlets weren't …
Browse files Browse the repository at this point in the history
…processed
  • Loading branch information
lordmilko committed Feb 8, 2017
1 parent 4b25d58 commit 9b7a431
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions PrtgAPI/PowerShell/Base/PrtgTableCmdlet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ protected override void ProcessRecordEx()
ProcessNameFilter();
ProcessTagsFilter();

if (Filter != null)
streamResults = false;

if (Count != null)
{
parameters.Count = Count.Value;
Expand Down
4 changes: 2 additions & 2 deletions PrtgAPI/Properties/AssemblyFileVersion.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//0
//6
//0
//12
//13
//
// This code was generated by a tool. Any changes made manually will be lost
// the next time this code is regenerated.
//

using System.Reflection;

[assembly: AssemblyFileVersion("0.6.0.12")]
[assembly: AssemblyFileVersion("0.6.0.13")]

0 comments on commit 9b7a431

Please sign in to comment.