Added support for m.imgur.com links. Changed curate ignore log message details.

This commit is contained in:
2018-05-05 03:18:05 +02:00
parent 9dd9c823e8
commit 3794fc3776
3 changed files with 5 additions and 5 deletions

View File

@@ -13,14 +13,14 @@ function curatePosts(posts, ignore) {
}) : null;
if(ignoring) {
console.log('\x1b[33m%s\x1b[0m', `Ignoring ${ignoring} post '${post.title}' - ${post.url}`);
console.log('\x1b[33m%s\x1b[0m', `Ignoring ${ignoring} post '${post.title}' (${post.permalink})`);
return acc;
}
if(host) {
if(config.fetch.avoidDuplicates && processed.has(host.id)) {
console.log('\x1b[33m%s\x1b[0m', `Ignoring cross-post or repost '${post.title}' - ${post.url}`);
console.log('\x1b[33m%s\x1b[0m', `Ignoring cross-post or repost '${post.url}' (${post.permalink})`);
return acc;
}