We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 610440c commit 1586e34Copy full SHA for 1586e34
1 file changed
src/routes/api/lttstore/devData/+server.ts
@@ -33,7 +33,7 @@ export const GET = (async ({platform}) => {
33
34
// const waterBottleChanges = db.prepare("select * from change_history where id = 7117650296935")
35
const changeHistory = db.prepare("select * from change_history where id = 6649895092327 or timestamp > ?")
36
- .bind(Date.now() - (14 * 24 * 60 * 60e3)) // only get non-screwdriver changes from the past 14 days
+ .bind(Date.now() - (7 * 24 * 60 * 60e3)) // only get non-screwdriver changes from the past 7 days
37
.all()
38
.then(r => r.results)
39
.finally(() => console.log("changeHistory query finished"))
0 commit comments