diff --git a/app/Services/TG/Hook/Mod/Book.php b/app/Services/TG/Hook/Mod/Book.php index 02542531..7200016a 100644 --- a/app/Services/TG/Hook/Mod/Book.php +++ b/app/Services/TG/Hook/Mod/Book.php @@ -1606,13 +1606,13 @@ class Book extends Base { { $iLimit = ModelBookOption::_hit("fire_limit"); - $oBookFire = ModelBook::where("fire", "!=", NULL)->orderBy("fire")->limit($iLimit)->get(); + $oBookFire = ModelBook::where("fire", "!=", NULL)->orderBy("fire")->where("is_del", 0)->limit($iLimit)->get(); $sWarningLine = ModelBookOption::_hit("fire_warning_line"); $this->aOption["show_id"] = true; - $this->_cd("firel"); +// $this->_cd("firel"); return $this->bookToStr($oBookFire); }