Skip to content

Commit

Permalink
Fix #1023 - issue with Get-PnPFileVersion filtering (#1997)
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamdsheth authored Jun 16, 2022
1 parent 60c0f74 commit cafcb4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/Files/GetFileVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected override void ExecuteCmdlet()
{
var versions = file.Versions;
ClientContext.ExecuteQueryRetry();
WriteObject(versions);
WriteObject(versions, true);
}
}
}
Expand Down

0 comments on commit cafcb4b

Please sign in to comment.