소스 검색

fix 最近阅读记录非外部上架图书不展示问题

songdb 4 년 전
부모
커밋
36e63efc43
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/Modules/Book/Services/BookConfigService.php

+ 2 - 2
app/Modules/Book/Services/BookConfigService.php

@@ -48,9 +48,9 @@ class BookConfigService
             return (object)array();
         }
         if ($order)
-            $res = BookConfig::getBooksByIds($where, $order,$is_external_shelf);
+            $res = BookConfig::getBooksByIds($where, [],$order,$is_external_shelf);
         else
-            $res = BookConfig::getBooksByIds($where,$is_external_shelf);
+            $res = BookConfig::getBooksByIds($where,[],$is_external_shelf);
         return $res;
     }