summaryrefslogtreecommitdiffstats
path: root/src/services
diff options
context:
space:
mode:
Diffstat (limited to 'src/services')
-rw-r--r--src/services/postDatabase.ts2
1 files changed, 1 insertions, 1 deletions
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