webp images support
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
ecb52b69ba
commit
e9d6738b80
2 changed files with 2 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
|||
{%- set preview_image = resource.extra.preview_image -%}
|
||||
{%- elif resource.assets %}
|
||||
{%- set basename = resource.assets[0] | split(pat='/') | last %}
|
||||
{%- if basename is ending_with('.jpg') or basename is ending_with('.jpeg') or basename is ending_with('.png') %}
|
||||
{%- if basename is ending_with('.jpg') or basename is ending_with('.jpeg') or basename is ending_with('.png') or basename is ending_with('.webp') %}
|
||||
{%- set preview_image = resource.path ~ basename -%}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
|
|
|
@ -140,6 +140,7 @@ function parseHtml(html) {
|
|||
if (!text && prevDate && (new Date(date) - new Date(prevDate)) <= kPostsDiffInMs) {
|
||||
// Do not download jpg if images already exist.
|
||||
if (!fs.existsSync(`${prevDir}/${i}.png`)
|
||||
&& !fs.existsSync(`${prevDir}/${i}.webp`)
|
||||
&& !fs.existsSync(`${prevDir}/${i}.jpg`)
|
||||
&& !fs.existsSync(`${prevDir}/${i}.jpeg`)) {
|
||||
downloads.push(downloadAsync(photo, `${prevDir}/${fileName}`));
|
||||
|
|
Loading…
Add table
Reference in a new issue