mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-08 21:11:59 +02:00
Allow mark_new_chapters when 1 chapter in case it changes.
This commit is contained in:
parent
8850c1a62b
commit
eaeeda6911
1 changed files with 1 additions and 1 deletions
|
|
@ -1382,7 +1382,7 @@ class Story(Requestable):
|
|||
addnums = len(self.chapters) > 1 and (
|
||||
self.getConfig('add_chapter_numbers') == "true"
|
||||
or (self.getConfig('add_chapter_numbers') == "toconly" and fortoc) )
|
||||
marknew = len(self.chapters) > 1 and self.getConfig('mark_new_chapters') # true or latestonly
|
||||
marknew = self.getConfig('mark_new_chapters') # true or latestonly
|
||||
|
||||
defpattern = self.getConfig('chapter_title_def_pattern','${title}') # default val in case of missing defaults.ini
|
||||
if addnums and marknew:
|
||||
|
|
|
|||
Loading…
Reference in a new issue