View Single Post
Old 02-24-2018, 10:52 AM   #2619
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 7,003
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
@edeniz:

Your problem is that you have two add_to_extra_valid_entries entries in the [defaults] section:
Code:
[defaults]
add_to_extra_valid_entries:,ships2chars
...
add_to_extra_valid_entries:,rawgenre,rawcategory,rawcharacters,rawships
The INI parser only uses the last entry in a section for the same key word. So ships2chars is ignored. (The add_to_ mechanism is for adding to other sections.)

Combine those two into one line and it should be good again:
Code:
[defaults]
add_to_extra_valid_entries:,ships2chars,rawgenre,rawcategory,rawcharacters,rawships
JimmXinu is offline   Reply With Quote