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

This commit is contained in:
2024-09-11 05:16:55 +02:00
parent 7cf0836cd4
commit 60eeca09d8
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;
}