Browse Source

fix build

Signed-off-by: ryjiang <jiangruiyi@gmail.com>
ryjiang 8 months ago
parent
commit
9016f6642d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      server/src/collections/collections.service.ts

+ 3 - 1
server/src/collections/collections.service.ts

@@ -260,7 +260,9 @@ export class CollectionsService {
         );
         count = collectionStatisticsRes.data.row_count;
       }
-    } catch (error) {}
+    } catch (error) {
+      console.log('ignore count error');
+    }
 
     return { rowCount: Number(count) } as CountObject;
   }