Added Girls Under Arrest to Adult Time. Added mobile album support to some Girlsway sites. Fixed Moms On Moms link.

This commit is contained in:
2020-03-06 23:40:15 +01:00
parent 495f0bcf3b
commit aad91fe4ae
3 changed files with 23 additions and 2 deletions

View File

@@ -468,7 +468,11 @@ async function fetchUpcoming(site) {
}
function getDeepUrl(url, site, release, mobile) {
const pathname = release?.path || new URL(url).pathname.replace(/\/en(\/video)?|\/scene/g, '');
const filter = new Set(['en', 'video', 'scene', site.slug, site.network.slug]);
const pathname = release?.path || new URL(url).pathname
.split('/')
.filter(component => !filter.has(component))
.join('/'); // reduce to scene ID and title slug
if (mobile) {
return `${mobile}${pathname}`;