Updated Jules Jordan scraper.
This commit is contained in:
@@ -49,11 +49,11 @@ import Campaign from '../campaigns/campaign.vue';
|
||||
|
||||
function photos() {
|
||||
if (this.tag.poster && this.$store.state.ui.sfw) {
|
||||
return [this.tag.poster].concat(this.tag.photos).map(photo => photo.sfw);
|
||||
return [this.tag.poster].concat(this.tag.photos).map((photo) => photo.sfw);
|
||||
}
|
||||
|
||||
if (this.$store.state.ui.sfw) {
|
||||
return this.tag.photos.map(photo => photo.sfw);
|
||||
return this.tag.photos.map((photo) => photo.sfw);
|
||||
}
|
||||
|
||||
if (this.tag.poster) {
|
||||
|
||||
Reference in New Issue
Block a user