Quote:
Originally Posted by ownedbycats
Is there any practical limit to the number of story-url sections in personal.ini? I've found myself using them often (all sorts of various reasons).
|

See:
https://docs.python.org/3/library/configparser.html
Googling
python configparser sections limit doesn't come up with any complaints, so I presume not.
Quote:
Originally Posted by ownedbycats
Bug report?
Code:
[https://archiveofourown.org/works/44088169]
always_reload_first_chapter:true
add_category_when_multi_category:false
never_make_cover:true
When downloading as new book or overwriting, I get a "Cannot insert None into a tag" unless I comment always_reload_first_chapter. It doesn't happen when updating.
EDIT: Another story by the same author instead gets a 'NoneType' object has no attribute 'find' error when I attempt to overwrite with always_reload.
|
always_reload_first_chapter:true was only really tested with base_xenforoforum sites where it used to be common for authors to include a manually combined TOC/index.
I do see the first error. It's a conflict between the AO3 only
use_view_full_work option, AO3 chapter/story summary/notes processing and
always_reload_first_chapter.
To make
always_reload_first_chapter work reliably, we have to sacrifice some of the performance benefits of
use_view_full_work and re-process the HTML every chapter because I'm not rewriting all the AO3 chapter processing.
I don't see the second error. Need at least a code line number.