Skip to content

Commit

Permalink
[fppt#540] Fix '$' in XREAD
Browse files Browse the repository at this point in the history
  • Loading branch information
Iван committed Oct 23, 2024
1 parent c88b1b0 commit 840bfcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ protected Slice response() {
mapKeyToBeginEntryId.append(
key,
"$".equalsIgnoreCase(id.toString())
? new StreamId(0, 1) // lowest possible id
? new StreamId(0, 0) // lowest possible id
: new StreamId(id)
);
} else {
Expand Down

0 comments on commit 840bfcd

Please sign in to comment.