diff options
-rw-r--r-- | extensions/InlineHistory/web/inline-history.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/InlineHistory/web/inline-history.js b/extensions/InlineHistory/web/inline-history.js index 019dc1e29..685798ec0 100644 --- a/extensions/InlineHistory/web/inline-history.js +++ b/extensions/InlineHistory/web/inline-history.js @@ -102,7 +102,7 @@ var inline_history = { var text = commentTimes[j].textContent || commentTimes[j].innerText; var mainTime = this.trim(text); - if (ih_activity_sort_order == 'oldest_to_newest' ? time >= mainTime : time <= mainTime) { + if (ih_activity_sort_order == 'oldest_to_newest' ? time > mainTime : time < mainTime) { if (j < commentTimes.length - 1) { continue; } else { |