From c589ed138fa08db870fc7fb101c20b8c49fffdad Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Wed, 18 Aug 2021 22:35:51 +0300 Subject: [PATCH] Hotfix 8 --- backend/src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/src/index.ts b/backend/src/index.ts index 2aff876b..ece94568 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -100,6 +100,12 @@ function errorHandler(err) { return; } + // FIXME: Hotfix + if (err.message && err.message.startsWith("Unknown override criteria")) { + console.warn(err.message); + return; + } + // tslint:disable:no-console console.error(err);