GwR changes for series sorting

This commit is contained in:
GRiker 2010-02-03 17:07:49 -07:00
parent cea60d5fd8
commit e7c07ee25e
2 changed files with 2 additions and 2 deletions

View File

@ -1009,7 +1009,7 @@ class EPUB_MOBI(CatalogPlugin):
elif x['series'] < y['series']:
return -1
elif not x['series'] and not y['series']:
if x['title'] > y['title']:
if self.generateSortTitle(x['title']) > self.generateSortTitle(y['title']):
return 1
else:
return -1