Skip to content

Commit 95445e4

Browse files
authored
extending time period for matches
1 parent 24dcd7b commit 95445e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ export default module.exports = class NodeScore {
135135
let self = this;
136136
let fromDate = new Date();
137137
let toDate = new Date();
138-
fromDate.setDate(fromDate.getDate() - 1);
139-
toDate.setDate(toDate.getDate() + 1);
138+
fromDate.setDate(fromDate.getDate() - 2);
139+
toDate.setDate(toDate.getDate() + 2);
140140

141141
let fromDateString = createStringFromDate(fromDate);
142142
let toDateString = createStringFromDate(toDate);

0 commit comments

Comments
 (0)