Browse Source

Fix missing history in Classic skin, due to mishandling of limit==0.

tags/0.6.0
ShyPike 14 years ago
parent
commit
13f890469e
  1. 1
      sabnzbd/api.py

1
sabnzbd/api.py

@ -1497,6 +1497,7 @@ def build_history(start=None, limit=None, verbose=False, verbose_list=None, sear
verbose_list = []
limit = int_conv(limit)
if not limit: limit = 1000000
start = int_conv(start)
failed_only = int_conv(failed_only)

Loading…
Cancel
Save