Another fix for ffnet character metadata, bump plugin version only.

This commit is contained in:
Jim Miller 2012-06-16 20:35:47 -05:00
parent 7aab7d906f
commit 01fce10c45
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ class FanFictionDownLoaderBase(InterfaceActionBase):
description = 'UI plugin to download FanFiction stories from various sites.'
supported_platforms = ['windows', 'osx', 'linux']
author = 'Jim Miller'
version = (1, 5, 33)
version = (1, 5, 34)
minimum_calibre_version = (0, 8, 30)
#: This field defines the GUI plugin class that contains all the code

View file

@ -237,7 +237,7 @@ class FanFictionNetSiteAdapter(BaseSiteAdapter):
metalist=metalist[1:]
# next might be characters, otherwise Reviews, Updated, Published, Words
if not ( metalist[0].startswith('Reviews') or metalist[0].startswith('Updated') or metalist[0].startswith('Published') or metalist[0].startswith('Words') ):
if not ( metalist[0].startswith('Reviews') or metalist[0].startswith('Updated') or metalist[0].startswith('Published') or metalist[0].startswith('Words') or metalist[0].startswith('Chapters') ):
self.story.extendList('characters',metalist[0].split('&'))
if 'Status: Complete' in metatext: