Removed channel ID from Gamma update query to prevent duplicate scenes. Added sexuality tags with covers to overview.
This commit is contained in:
@@ -210,9 +210,15 @@ function initTagsActions(store, _router) {
|
||||
query Tags(
|
||||
$slugs: [String!] = [],
|
||||
$limit: Int = 100
|
||||
$exclude: [String!]
|
||||
) {
|
||||
tags(
|
||||
filter: { slug: { in: $slugs } },
|
||||
filter: {
|
||||
slug: {
|
||||
in: $slugs
|
||||
notIn: $exclude
|
||||
}
|
||||
},
|
||||
first: $limit
|
||||
) {
|
||||
id
|
||||
@@ -257,6 +263,7 @@ function initTagsActions(store, _router) {
|
||||
`, {
|
||||
slugs,
|
||||
limit,
|
||||
exclude: store.state.ui.tagFilter,
|
||||
});
|
||||
|
||||
return tags.map((tag) => curateTag(tag, store.state.ui.sfw));
|
||||
|
||||
Reference in New Issue
Block a user