Skip to content

Commit

Permalink
fix bulkopen
Browse files Browse the repository at this point in the history
  • Loading branch information
Exarilo committed Oct 22, 2024
1 parent 69e41a0 commit dd01eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public List<Result> Query(Query query)
.Where(result => result != null)
.ToList();

if (filteredItemsToBulkOpen.Any())
if (filteredItemsToBulkOpen.Count > 1)
{
results.Add(CreateBulkOpenResult(fullSearch, filteredItemsToBulkOpen, args));
}
Expand Down

0 comments on commit dd01eca

Please sign in to comment.