瀏覽代碼

change model to v3

luojunhui 5 月之前
父節點
當前提交
c2dc030c17
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      tasks/crawler_accounts_by_association.py

+ 2 - 1
tasks/crawler_accounts_by_association.py

@@ -1798,7 +1798,8 @@ class CrawlerAccounts:
         result = []
         for row in fetch_response:
             if temp_dict.get(row['title']):
-                result += temp_dict.get(row['title'])
+                title_obj_list = [{"title": i} for i in row["title"]]
+                result += temp_dict.get(title_obj_list)
 
         result = list(set(result))
         return result