소스 검색

fix: use priceStep exists filter instead of non-existent isVerified column

gangvy 5 달 전
부모
커밋
809b899b9f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/app/app.ts

+ 1 - 1
src/app/app.ts

@@ -168,7 +168,7 @@ export class App implements OnInit {
     this.apigListLoading = true;
     try {
       const query: any = {
-        where: JSON.stringify({ isVerified: true }),
+        where: JSON.stringify({ priceStep: { $exists: true } }),
         keys: 'title,content,priceStep',
         order: '-updatedAt',
         limit: '20'