FIX:(#1477) Fix for limited search results being returned from CV

This commit is contained in:
evilhero 2016-12-05 08:27:27 -05:00
parent 021459c280
commit 65b52e0b0d
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def pullsearch(comicapi, comicquery, offset, explicit, type):
u_comicquery = u_comicquery.replace(" ", "%20")
if explicit == 'all' or explicit == 'loose':
PULLURL = mylar.CVURL + 'search?api_key=' + str(comicapi) + '&resources=' + str(type) + '&query=' + u_comicquery + '&field_list=id,name,start_year,first_issue,site_detail_url,count_of_issues,image,publisher,deck,description,last_issue&format=xml&page=' + str(offset)
PULLURL = mylar.CVURL + 'search?api_key=' + str(comicapi) + '&resources=' + str(type) + '&query=' + u_comicquery + '&field_list=id,name,start_year,first_issue,site_detail_url,count_of_issues,image,publisher,deck,description,last_issue&format=xml&limit=100&page=' + str(offset)
else:
# 02/22/2014 use the volume filter label to get the right results.