This commit is contained in:
Tribalize 2021-06-13 18:07:57 -04:00
parent d0962b4f48
commit b8413d054e
2 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ const utils = require('./utils')
const categories = require('./categories')
const path = require('path')
const sfwCategories = categories.filter(c => !c.nsfw).map(c => c.name)
const nsfwCategories = categories.filter(c => !c.nsfw).map(c => c.name)
const nsfwCategories = categories.filter(c => c.nsfw).map(c => c.name)
const parser = {}
@ -232,7 +232,7 @@ class Channel {
}
}
isSFW() {
isNSFW() {
return sfwCategories.includes(this.category)
}