We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4688284 commit 3b5976aCopy full SHA for 3b5976a
index.js
@@ -87,7 +87,7 @@ async function commit(octokit, owner, repo, commitInfo, treeSHA, latestCommitSHA
87
// Returns false if no more submissions should be added.
88
function addToSubmissions(response, lastTimestamp, filterDuplicateSecs, submissions_dict, submissions) {
89
for (const submission of response.data.submissions_dump) {
90
- if (submission.timestamp < lastTimestamp) {
+ if (submission.timestamp <= lastTimestamp) {
91
return false;
92
}
93
if (submission.status_display !== 'Accepted') {
0 commit comments