Skip to content

Commit

Permalink
Merge pull request #94 from pamburus/feature/fix-93
Browse files Browse the repository at this point in the history
fix: fixed filtering by fields in case number of fields is greater than 32
  • Loading branch information
pamburus authored Oct 11, 2023
2 parents f27dd71 + 187ea18 commit daa0849
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ categories = ["command-line-utilities"]
description = "Utility for viewing json-formatted log files."
keywords = ["cli", "human", "log"]
name = "hl"
version = "0.20.0-beta.14.8"
version = "0.20.0-beta.14.8.1"
edition = "2021"
build = "build.rs"

Expand Down
2 changes: 1 addition & 1 deletion src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl<'a> Record<'a> {
}
_ => {
let mut matched = false;
for (k, v) in self.extra.iter() {
for (k, v) in self.fields() {
match field.match_key(*k) {
None => {}
Some(KeyMatch::Full) => {
Expand Down

0 comments on commit daa0849

Please sign in to comment.