X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fsupported%2FFimfictionApi.java;h=c97ecf7d3e9ea2ff8a7cc782eea5bca660f9f265;hb=0013f760d69fd7db2b298c3da5d89bc0b102eabf;hp=a64e4c082f4eccbe5e1ae9fcc88745306207a5fc;hpb=dd69471e5f80b425023725e08a44d46e9afcdec0;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/supported/FimfictionApi.java b/src/be/nikiroo/fanfix/supported/FimfictionApi.java index a64e4c0..c97ecf7 100644 --- a/src/be/nikiroo/fanfix/supported/FimfictionApi.java +++ b/src/be/nikiroo/fanfix/supported/FimfictionApi.java @@ -147,12 +147,20 @@ class FimfictionApi extends BasicSupport { if (!coverImageLink.trim().isEmpty()) { URL coverImageUrl = new URL(coverImageLink.trim()); - InputStream in = Instance.getCache() - .open(coverImageUrl, this, true); + // No need to use the oauth, cookies... for the cover + // Plus: it crashes on Android because of the referer try { - meta.setCover(new Image(in)); - } finally { - in.close(); + InputStream in = Instance.getCache().open(coverImageUrl, null, + true); + try { + meta.setCover(new Image(in)); + } finally { + in.close(); + } + } catch (IOException e) { + Instance.getTraceHandler().error( + new IOException( + "Cannot get the story cover, ignoring...", e)); } }