Added series as channels with logos and photo album scraping to Little Caprice. Added various tag photos.

This commit is contained in:
DebaucheryLibrarian
2020-11-24 04:29:44 +01:00
parent 711a9441a6
commit 980efbc93d
66 changed files with 172 additions and 19 deletions

View File

@@ -57,7 +57,7 @@ function toBaseReleases(baseReleasesOrUrls, entity = null) {
// base release with URL
return {
...baseReleaseOrUrl,
entity,
entity: baseReleaseOrUrl.entity || entity,
deep: false,
};
}
@@ -75,7 +75,7 @@ function toBaseReleases(baseReleasesOrUrls, entity = null) {
// base release without URL, prepare for passthrough
return {
...baseReleaseOrUrl,
entity,
entity: baseReleaseOrUrl.entity || entity,
deep: false,
};
}