From f5365c91a4ff4ea8318934ab22b5f1069401ffed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E9=87=91=E5=8B=87?= Date: Thu, 6 Nov 2025 14:56:53 +0800 Subject: [PATCH] * [highgo] Fix bug #66787 --- module/story/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/model.php b/module/story/model.php index 12c76ec69c..949e2202b1 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -5615,7 +5615,7 @@ class storyModel extends model ->leftJoin(TABLE_STORY)->alias('t3')->on("t2.AType='story' AND t2.AID=t3.id") ->where('t1.revision')->in($revisions) ->andWhere('t1.repo')->eq($repoID) - ->andWhere('t3.id')->ne('') + ->andWhere('t3.id')->notNULL() ->fetchGroup('revision', 'id'); } }