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

View File

@@ -2,7 +2,7 @@ const categories = require('./categories')
const parser = require('./parser')
const utils = require('./utils')
const sfwCategories = categories.filter(c => !c.nsfw).map(c => c.name)
const nsfwCategories = categories.filter(c => !c.nsfw).map(c => c.name)
const db = {}
@@ -106,8 +106,8 @@ db.channels = {
all() {
return this.list
},
sfw() {
return this.list.filter(i => sfwCategories.includes(i.category))
nsfw() {
return this.list.filter(i => nsfwCategories.includes(i.category))
},
forCountry(country) {
this.filter = {