Browse Source

搜索 tv nfo 文件的时候不进行文件的过滤判断 fix #620

Signed-off-by: allan716 <[email protected]>
allan716 2 years ago
parent
commit
cf7e887d55
1 changed files with 3 additions and 3 deletions
  1. 3 3
      pkg/search/search.go

+ 3 - 3
pkg/search/search.go

@@ -147,9 +147,9 @@ func TVNfo(l *logrus.Logger, dir string) ([]string, error) {
 				continue
 				continue
 			} else {
 			} else {
 
 
-				if filter.SkipFileInfo(l, curFile, fullPath) == true {
-					continue
-				}
+				//if filter.SkipFileInfo(l, curFile, fullPath) == true {
+				//	continue
+				//}
 				fileFullPathList = append(fileFullPathList, fullPath)
 				fileFullPathList = append(fileFullPathList, fullPath)
 			}
 			}
 		}
 		}