Using unprint for Perv City . Updated unprint for date formats.

This commit is contained in:
DebaucheryLibrarian
2026-01-10 23:07:03 +01:00
parent f04451f746
commit c9ba7bb90b
7 changed files with 142 additions and 93 deletions

View File

@@ -411,7 +411,7 @@ async function fetchScene(url, channel, baseRelease, options) {
return res.status;
}
async function scrapeProfile(data, _channel) {
async function scrapeProfile(data, channel) {
const model = data.model;
const profile = {};
@@ -429,11 +429,9 @@ async function scrapeProfile(data, _channel) {
profile.poster = getAvatarFallbacks(model.images.profile);
profile.banner = getAvatarFallbacks(model.images.poster);
/*
if (model.videos) {
profile.scenes = scrapeAll(model.videos.edges.map((edge) => edge.node), channel);
}
*/
return profile;
}