Skip to content

Commit

Permalink
fix permanent miss key #62
Browse files Browse the repository at this point in the history
Signed-off-by: catcherwong <[email protected]>
  • Loading branch information
catcherwong committed Aug 18, 2024
1 parent 1b1f7b0 commit 288cee1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build/version.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<PropertyGroup>

<RDBParserVersion>0.9.3</RDBParserVersion>
<RDBCliVersion>0.9.3</RDBCliVersion>
<RDBParserVersion>0.9.4</RDBParserVersion>
<RDBCliVersion>0.9.4</RDBCliVersion>

</PropertyGroup>
</Project>
6 changes: 3 additions & 3 deletions src/RDBParser/BinaryReaderRDBParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void Parse(string path)
if (MatchFilter(database: (int)db))
{
_key = br.ReadStr();

if (MatchFilter(dataType: opType, key: _key))
{
info.Idle = _idle;
Expand All @@ -172,14 +172,14 @@ public void Parse(string path)
{
SkipObject(br, opType);
}

_expiry = 0;
}
else
{
br.SkipStr();
SkipObject(br, opType);
}

_expiry = 0;
}
}
}
Expand Down

0 comments on commit 288cee1

Please sign in to comment.