From d48ba9b4006f83a09cd49f4ea271b2532b6ed09e Mon Sep 17 00:00:00 2001
From: Will Hunt <half-shot@molrams.com>
Date: Thu, 14 Sep 2017 10:08:29 +0100
Subject: [PATCH] Next() should return true

---
 src/db/dbdataevent.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/db/dbdataevent.ts b/src/db/dbdataevent.ts
index 58ca681..de1acd4 100644
--- a/src/db/dbdataevent.ts
+++ b/src/db/dbdataevent.ts
@@ -65,6 +65,7 @@ export class DbEvent implements IDbDataMany {
         this.DiscordId = item.discord_id;
         this.GuildId = item.guild_id;
         this.ChannelId = item.channel_id;
+        return true;
     }
 
     public async Insert(store: DiscordStore): Promise<null> {
-- 
GitLab