Skip to content

Commit

Permalink
seek fix: + != - (i am an idiot)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmorley191 committed May 31, 2023
1 parent f125b20 commit 7462e3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public static long[] parseArgsFromFriendlyInputTimestampString(String timeString
} else if (timeString.startsWith("-")) {
return new long[] { 1, -time };
} else {
return new long[] { 0, -time };
return new long[] { 0, time };
}
}

Expand Down

0 comments on commit 7462e3d

Please sign in to comment.