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:
@@ -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}`;
|
||||
|
||||
Reference in New Issue
Block a user