Skip to content

Commit

Permalink
Fix Display Error
Browse files Browse the repository at this point in the history
Dont write Enumerable directly to console, use String.Join to convert it to string first
  • Loading branch information
Grub4K committed Jan 26, 2021
1 parent 79e6750 commit 113f9f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

[assembly: AssemblyVersion("2.1")]
[assembly: AssemblyInformationalVersion("2.1")]
[assembly: AssemblyFileVersion("2.1.3.0")]
[assembly: AssemblyFileVersion("2.1.10.2")]
2 changes: 1 addition & 1 deletion src/cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ static int Query(VDFFile source, uint id, string[] queries)
}
foreach (var query in queries)
{
Console.WriteLine(dataset.Data.Search(query));
Console.WriteLine(String.Join("\n", dataset.Data.Search(query)));
}
return 0;
}
Expand Down

0 comments on commit 113f9f2

Please sign in to comment.