Merge pull request #193 from shikorism/fix/pixiv-resolver-tag-filter
PixivResolverのタグ抽出がおそらく「R-18」を無視できていないのを修正
This commit is contained in:
commit
35cc0c6357
@ -76,7 +76,7 @@ class PixivResolver implements Resolver
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 一部の固定キーワードは無視
|
// 一部の固定キーワードは無視
|
||||||
if (array_search($keyword, ['R-18', 'イラスト', 'pixiv', 'ピクシブ'], true)) {
|
if (array_search($keyword, ['R-18', 'イラスト', 'pixiv', 'ピクシブ'], true) !== false) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user