diff --git a/seeds/01_networks.js b/seeds/01_networks.js index a1a92c53..7e11e910 100644 --- a/seeds/01_networks.js +++ b/seeds/01_networks.js @@ -107,6 +107,9 @@ const networks = [ name: 'Burning Angel', url: 'https://www.burningangel.com', description: 'BurningAngel.com features tattoo porn with punk girls, goths, emo and the best scene girl porn online! View Joanna Angel and all of her alt pornstars in rough sex videos and hardcore porn', + parameters: { + mobile: 'https://m.dpfanatics.com/en/video', + }, parent: 'gamma', }, { @@ -155,6 +158,9 @@ const networks = [ name: 'Fame Digital', url: 'https://www.famedigital.com', description: 'Watch and download thousands of the best porn videos at FameDigital.com, the largest porn network on the web! The hottest teens, MILFs and more pornstars are all here!', + parameters: { + mobile: 'https://m.dpfanatics.com/en/video', + }, parent: 'gamma', }, { diff --git a/src/scrapers/gamma.js b/src/scrapers/gamma.js index 4dba805d..52d8a945 100644 --- a/src/scrapers/gamma.js +++ b/src/scrapers/gamma.js @@ -468,7 +468,7 @@ async function fetchUpcoming(site) { } function getDeepUrl(url, site, release, mobile) { - const pathname = release?.path || new URL(url).pathname.replace('/en/video', ''); + const pathname = release?.path || new URL(url).pathname.replace(/\/en(\/video)?|\/scene/g, ''); if (mobile) { return `${mobile}${pathname}`;