Skip to content

Commit

Permalink
fix: bug where filtered messsages were backwards when quiet (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen authored Jan 31, 2024
1 parent 0ad7c3c commit ea535d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/nuke/nuke.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ func (n *Nuke) Scan(ctx context.Context) error {
return err
}

if item.State != queue.ItemStateFiltered || !n.Parameters.Quiet {
if item.State == queue.ItemStateFiltered || !n.Parameters.Quiet {
item.Print()
}
}
Expand Down

0 comments on commit ea535d8

Please sign in to comment.