Removed stray slice from Gamma scraper.

This commit is contained in:
DebaucheryLibrarian
2026-01-11 16:58:33 +01:00
parent 24adf04fe3
commit 91981a6dd7
7 changed files with 54 additions and 29 deletions

View File

@@ -136,7 +136,7 @@ async function fetchScene(url, channel) {
}
async function fetchProfile({ name: actorName }, entity, include) {
const url = `${entity.url}/models/${slugify(actorName)}.en.html`;
const url = `${new URL(entity.url).origin}/models/${slugify(actorName)}.en.html`;
const res = await unprint.get(url);
return res.ok ? scrapeProfile(res.context, url, include) : res.status;