Fixed tags not writing to files (#3)
This commit is contained in:
@@ -62,6 +62,7 @@ def StartExport(books):
|
||||
"Publisher": b.Publisher,
|
||||
"Imprint": b.Imprint,
|
||||
"Genre": b.Genre,
|
||||
"Tags": b.Tags,
|
||||
"Web": b.Web if hasattr(b, 'Web') else "",
|
||||
"PageCount": b.PageCount,
|
||||
"LanguageISO": b.LanguageISO,
|
||||
@@ -190,6 +191,7 @@ def ApplySyncResults(books):
|
||||
if "Editor" in data and data["Editor"]: b.Editor = data["Editor"]
|
||||
if "Publisher" in data and data["Publisher"]: b.Publisher = data["Publisher"]
|
||||
if "Genre" in data and data["Genre"]: b.Genre = data["Genre"]
|
||||
if "Tags" in data and data["Tags"]: b.Tags = data["Tags"]
|
||||
if "Format" in data and data["Format"]: b.Format = data["Format"]
|
||||
if "Characters" in data and data["Characters"]: b.Characters = data["Characters"]
|
||||
if "Locations" in data and data["Locations"]: b.Locations = data["Locations"]
|
||||
@@ -208,6 +210,7 @@ def ApplySyncResults(books):
|
||||
for key in custom_vals.Keys:
|
||||
b.SetCustomValue(key, custom_vals[key])
|
||||
|
||||
b.ComicInfoIsDirty = False
|
||||
b.SetCustomValue("ExtSyncStatus", "Synced")
|
||||
imported_count += 1
|
||||
|
||||
|
||||
+1
-1
@@ -141,7 +141,7 @@ class SyncEngine:
|
||||
"AlternateSeries", "AlternateNumber", "AlternateCount",
|
||||
"Summary", "Notes", "Year", "Month", "Day",
|
||||
"Writer", "Penciller", "Inker", "Colorist", "Letterer", "CoverArtist", "Editor",
|
||||
"Publisher", "Imprint", "Genre", "Web", "PageCount", "LanguageISO", "Format",
|
||||
"Publisher", "Imprint", "Genre", "Tags", "Web", "PageCount", "LanguageISO", "Format",
|
||||
"BlackAndWhite", "Manga", "Characters", "Teams", "Locations", "ScanInformation",
|
||||
"StoryArc", "SeriesGroup", "AgeRating", "HasBeenRead", "Pages", "CommunityRating", "Rating",
|
||||
"MainCharacterOrTeam", "Review"
|
||||
|
||||
Reference in New Issue
Block a user