From: Niki Roo Date: Sun, 26 May 2019 17:53:05 +0000 (+0200) Subject: fix FimFictionApi error on Android X-Git-Url: http://git.nikiroo.be/?p=nikiroo-utils.git;a=commitdiff_plain;h=9a098d45a555e5d660c41e04f64e9445420cc025 fix FimFictionApi error on Android --- 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)); } }