Added Metro HD network using MindGeek scraper. Fixed MindGeek profile scraper avatar issue.

This commit is contained in:
2020-01-29 02:24:19 +01:00
parent b75780044c
commit fc675ae144
18 changed files with 78 additions and 9 deletions

13
src/scrapers/metrohd.js Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
const { fetchScene, fetchLatest, fetchProfile } = require('./mindgeek');
async function networkFetchProfile(actorName) {
return fetchProfile(actorName, 'devianthardcore');
}
module.exports = {
fetchLatest,
fetchProfile: networkFetchProfile,
fetchScene,
};