소스 검색

update get_feeds

wangkun 3 년 전
부모
커밋
0c4f9a9571
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      main/get_feeds.py

+ 1 - 1
main/get_feeds.py

@@ -205,7 +205,7 @@ def get_feeds():
                         Common.logger().info("无效视频")
 
                     # 基础门槛,播放量>=20000
-                    elif video_play_cnt < 20000:
+                    elif int(video_play_cnt) < 20000:
                         Common.logger().info("播放量{} < 20000", video_play_cnt)
                     # 过滤敏感词
                     elif any(word if word in video_title else False for word in kanyikan_sensitive_words()) is True: