X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Flibrary%2FLocalLibrary.java;h=e531072935764398870355bbd8a1027d368bc9e6;hb=b56c9d60fe4ed9470881ebf6221acb0a52997291;hp=54ad1d66769d8962cf5516a2bc5c6302e04e0ac6;hpb=aac7079dc723e0c03a6c6f58a81d4ef756811fa2;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/library/LocalLibrary.java b/src/be/nikiroo/fanfix/library/LocalLibrary.java index 54ad1d6..e531072 100644 --- a/src/be/nikiroo/fanfix/library/LocalLibrary.java +++ b/src/be/nikiroo/fanfix/library/LocalLibrary.java @@ -86,7 +86,7 @@ public class LocalLibrary extends BasicLibrary { this.lastId = 0; this.stories = null; - this.sourceCovers = new HashMap(); + this.sourceCovers = null; baseDir.mkdirs(); } @@ -134,7 +134,7 @@ public class LocalLibrary extends BasicLibrary { @Override protected void deleteInfo(String luid) { stories = null; - sourceCovers = new HashMap(); + sourceCovers = null; } @Override @@ -199,6 +199,10 @@ public class LocalLibrary extends BasicLibrary { @Override public Image getSourceCover(String source) { + if (sourceCovers == null) { + getStories(null); + } + if (!sourceCovers.containsKey(source)) { sourceCovers.put(source, super.getSourceCover(source)); } @@ -208,6 +212,10 @@ public class LocalLibrary extends BasicLibrary { @Override public void setSourceCover(String source, String luid) { + if (sourceCovers == null) { + getStories(null); + } + sourceCovers.put(source, getCover(luid)); File cover = new File(getExpectedDir(source), ".cover"); try { @@ -273,7 +281,6 @@ public class LocalLibrary extends BasicLibrary { } super.imprt(other, luid, pg); - deleteInfo(); } @@ -425,6 +432,7 @@ public class LocalLibrary extends BasicLibrary { if (stories == null) { stories = new HashMap(); + sourceCovers = new HashMap(); lastId = 0; @@ -520,6 +528,10 @@ public class LocalLibrary extends BasicLibrary { * the cover image */ void setSourceCover(String source, Image coverImage) { + if (sourceCovers == null) { + getStories(null); + } + sourceCovers.put(source, coverImage); File cover = new File(getExpectedDir(source), ".cover"); try {