Procházet zdrojové kódy

Actually did the checks properly now.

master
Trey Del Bonis před 2 roky
rodič
revize
6a4acc6ae7
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      main.py

+ 2
- 2
main.py Zobrazit soubor

@@ -158,8 +158,8 @@ def filter_posts(config, posts, filt):
filt = set(filt)
newfilt = set()

for p in posts:
if len(ok) <= tp and p['score'] >= config['min_score']:
for i, p in enumerate(posts):
if i < tp and p['score'] >= config['min_score']:
if p['rid'] not in filt:
ok.append(p)
else:

Načítá se…
Zrušit
Uložit