fix: add missing catch, closes #13012

This commit is contained in:
Barış Soner Uşaklı
2024-12-25 10:43:02 -05:00
parent 9190721865
commit 45021b5bfa

View File

@@ -525,7 +525,7 @@ ActivityPub.probe = async ({ uid, url }) => {
// Return early but retry for caching purposes
checkHeader(1000 * 60).then((result) => {
probeCache.set(url, result);
});
}).catch(err => ActivityPub.helpers.log(err.stack));
return false;
}
}