Added Milfy to profile list, fixed Vixen not returning gracefully when profile is not found.

This commit is contained in:
DebaucheryLibrarian
2023-07-22 00:49:56 +02:00
parent 25f3dcf9a5
commit 80750b44dc
3 changed files with 22 additions and 12 deletions

View File

@@ -611,7 +611,7 @@ async function fetchProfile(actor, { channel }) {
},
});
if (res.ok) {
if (res.ok && res.body.data?.model) {
return scrapeProfile(res.body.data, channel);
}