From fe2c9bf49dc58ee7cb936367a13a7561a32720c4 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 26 Sep 2020 23:48:18 +0700 Subject: [PATCH] Revering comment. --- backend/src/routes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/routes.ts b/backend/src/routes.ts index 22205a3a9..ecf827dee 100644 --- a/backend/src/routes.ts +++ b/backend/src/routes.ts @@ -15,8 +15,8 @@ class Routes { constructor() { if (!config.DB_DISABLED) { - // this.createCache(); - // setInterval(this.createCache.bind(this), 600000); + this.createCache(); + setInterval(this.createCache.bind(this), 600000); } }