Browse Source

Fix menu number of items.

tags/release_0.25.1
JackDandy 5 years ago
parent
commit
95f64e1fac
  1. 2
      sickbeard/webserve.py

2
sickbeard/webserve.py

@ -6156,7 +6156,7 @@ class History(MainHandler):
result = []
my_db = db.DBConnection(row_type='dict') # type: db.DBConnection
history_detailed, history_compact = cls.query_history(my_db, limit)
history_detailed, history_compact = cls.query_history(my_db)
dedupe = set()
for item in history_compact:
if item.get('tvid_prodid') not in dedupe:

Loading…
Cancel
Save