Updated Vixen model scraper.

This commit is contained in:
DebaucheryLibrarian
2023-07-21 23:55:30 +02:00
parent 4d20dae079
commit 0b101dde3c
2 changed files with 96 additions and 45 deletions

View File

@@ -62,8 +62,6 @@ function scrapeAll(scenes, channel) {
function scrapeProfile(actor, entity) {
const profile = {};
console.log(actor);
if (actor.bio.about && !/\band\b/.test(actor.bio.about)) {
const bio = actor.bio.about.split(/\n/).filter(Boolean).reduce((acc, item) => {
const [key, value] = item.match(/(.+): (.+)/).slice(1);