diff options
author | Volpeon <git@volpeon.ink> | 2021-10-19 20:49:43 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-10-19 20:49:43 +0200 |
commit | bb41634991fe81e0bde73c1e5ddf2541bec69cff (patch) | |
tree | 8194a25f4b91ddb03c7d1d697431521161e13a89 /src | |
parent | Fix (diff) | |
download | feralbot-bb41634991fe81e0bde73c1e5ddf2541bec69cff.tar.gz feralbot-bb41634991fe81e0bde73c1e5ddf2541bec69cff.tar.bz2 feralbot-bb41634991fe81e0bde73c1e5ddf2541bec69cff.zip |
Fix db
Diffstat (limited to 'src')
-rw-r--r-- | src/index.ts | 2 | ||||
-rw-r--r-- | src/services/postDatabase.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts index 90a8f5b..7fe2128 100644 --- a/src/index.ts +++ b/src/index.ts | |||
@@ -3,7 +3,7 @@ import * as jobs from "./services/jobs"; | |||
3 | import * as cliArgs from "ts-command-line-args"; | 3 | import * as cliArgs from "ts-command-line-args"; |
4 | import PostDatabase from "./services/postDatabase"; | 4 | import PostDatabase from "./services/postDatabase"; |
5 | 5 | ||
6 | export const queueDb = new PostDatabase("queue.json", 50); | 6 | export const queueDb = new PostDatabase("queue.json"); |
7 | 7 | ||
8 | const args = cliArgs.parse<{ | 8 | const args = cliArgs.parse<{ |
9 | id?: number; | 9 | id?: number; |
diff --git a/src/services/postDatabase.ts b/src/services/postDatabase.ts index ab5db28..63227a2 100644 --- a/src/services/postDatabase.ts +++ b/src/services/postDatabase.ts | |||
@@ -38,7 +38,7 @@ export class PostDatabase { | |||
38 | const entries = t.array(PostDatabaseEntryC).decode(fileContent); | 38 | const entries = t.array(PostDatabaseEntryC).decode(fileContent); |
39 | 39 | ||
40 | if (f.either.isRight(entries)) { | 40 | if (f.either.isRight(entries)) { |
41 | this.entries = this.max ? entries.right.slice(0, -1 * this.max) : entries.right; | 41 | this.entries = this.max ? entries.right.slice(-1 * this.max) : entries.right; |
42 | } | 42 | } |
43 | } | 43 | } |
44 | 44 | ||