Merge pull request #193 from shikorism/fix/pixiv-resolver-tag-filter
PixivResolverのタグ抽出がおそらく「R-18」を無視できていないのを修正
This commit is contained in:
		@@ -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;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user