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

@@ -7,7 +7,7 @@ const fetch = require('node-fetch');
function eroshare(post) {
return fetch(`https://web.archive.org/web/20170630040157im_/https://eroshare.com/${post.host.id}`).then(res => {
if(res.ok) {
return res.text()
return res.text();
}
return Promise.reject(`Unable to recover Eroshare video '${post.host.id}' :(`);