Skip to content
This repository has been archived by the owner on Jul 13, 2024. It is now read-only.

Commit

Permalink
Update javlibrary.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fanza1 authored Apr 2, 2021
1 parent 4ad08c3 commit 1db4817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javsdt/javlibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,13 +413,13 @@
if ("蓝光" in genres): #防止蓝光版被误伤
float_score = float_score
# 降低某些genre的权重,可以自行添加,以下两种"肛交"和"灌肠"仅用于示例,没有附带任何观点和立场。
elif (("肛交" in genres) or ("灌肠" in genres)) and (usersNum < 200) and (float_score > 8):
elif (("肛交" in genres) or ("灌肠" in genres)) and (usersNum < 300) and (float_score > 8):
float_score = float_score * 0.7
elif (usersNum < 100) and (float_score > 8):
float_score = float_score * 0.75
elif (usersNum < 200) and (float_score > 8):
float_score = float_score * 0.85
elif (usersNum < 300) and (float_score > 9):
elif (usersNum < 300) and (float_score > 8.4):
float_score = float_score * 0.9
#end 避免小众高分影片霸榜的算法
if float_score >= 0:
Expand Down

0 comments on commit 1db4817

Please sign in to comment.