From 694a1c2409858077c181896741d7ef0c8d0a0df0 Mon Sep 17 00:00:00 2001 From: bourgeoa Date: Sun, 24 Mar 2024 12:57:55 +0100 Subject: [PATCH] keep status lookup --- src/store.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/store.ts b/src/store.ts index 72a365a9a..c113f428b 100644 --- a/src/store.ts +++ b/src/store.ts @@ -896,11 +896,11 @@ export default class IndexedFormula extends Formula { // IN future - allow pass if (response != undefined) { // ts this.removeMatches(response, null, null, meta) } - // not needed - /* const status = this.any(request, this.sym(`${linkNamespaceURI}status`), null, meta) as Quad_Subject + // may be not needed + const status = this.any(request, this.sym(`${linkNamespaceURI}status`), null, meta) as Quad_Subject if (status != undefined) { // ts this.removeMatches(status, null, null, meta) - } */ + } this.removeMatches(request, null, null, meta) } }