This commit is contained in:
Julian Lam
2018-04-24 10:09:40 -04:00
parent 73bc96528a
commit f0f30041f5
3 changed files with 6 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ Diffs.get = function (pid, since, callback) {
function (timestamps, next) {
// Pass those made after `since`, and create keys
const keys = timestamps.filter(function (timestamp) {
return (parseInt(timestamp, 10) || 0) > since;
return (parseInt(timestamp, 10) || 0) >= since;
}).map(function (timestamp) {
return 'diff:' + pid + '.' + timestamp;
});