From 1d3a661973eaa7e9f553d8c5a404e05037ccc2b6 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Sat, 22 Oct 2022 00:40:07 +0700 Subject: [PATCH] =?UTF-8?q?=D0=A3=D1=81=D0=BA=D0=BE=D1=80=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE=D1=86=D0=B5=D0=B4=D1=83=D1=80?= =?UTF-8?q?=D1=8B=20=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/core/DbSearcher.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/core/DbSearcher.js b/server/core/DbSearcher.js index a47bc0f..877aae2 100644 --- a/server/core/DbSearcher.js +++ b/server/core/DbSearcher.js @@ -99,7 +99,7 @@ class DbSearcher { const result = new Set(); for (const id of ids) { - const row = @row(id); + const row = @unsafeRow(id); for (const authorId of row.authorId) result.add(authorId); } @@ -123,7 +123,7 @@ class DbSearcher { const result = new Set(); for (const id of ids) { - const row = @row(id); + const row = @unsafeRow(id); for (const authorId of row.authorId) result.add(authorId); } @@ -158,7 +158,7 @@ class DbSearcher { const result = new Set(); for (const id of ids) { - const row = @row(id); + const row = @unsafeRow(id); for (const authorId of row.authorId) result.add(authorId); } @@ -186,7 +186,7 @@ class DbSearcher { const result = new Set(); for (const id of ids) { - const row = @row(id); + const row = @unsafeRow(id); for (const authorId of row.authorId) result.add(authorId); }