diff --git a/src/scrapers/gamma.js b/src/scrapers/gamma.js index a0590b96..0750c23c 100644 --- a/src/scrapers/gamma.js +++ b/src/scrapers/gamma.js @@ -7,6 +7,7 @@ const cheerio = require('cheerio'); const moment = require('moment'); const { ex } = require('../utils/q'); +const slugify = require('../utils/slugify'); async function fetchPhotos(url) { const res = await bhttp.get(url); @@ -189,6 +190,9 @@ async function scrapeScene(html, url, site) { release.tags = hasTrans ? [...rawTags, 'transsexual'] : rawTags; } + const channel = data?.productionCompany?.name || $('.studioLink a').attr('title')?.trim(); + if (channel) release.channel = slugify(channel, { delimiter: '' }); + release.poster = videoData.picPreview; const photoLink = $('.picturesItem a').attr('href');