ソースを参照

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'