소스 검색

Rename unknown parttype to "unknown"

cvium 3 년 전
부모
커밋
6d6fb1bba3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Emby.Naming/Video/FileStackRule.cs

+ 1 - 1
Emby.Naming/Video/FileStackRule.cs

@@ -41,7 +41,7 @@ public class FileStackRule
             return false;
         }
 
-        var partType = match.Groups["parttype"].Success ? match.Groups["parttype"].Value : "vol";
+        var partType = match.Groups["parttype"].Success ? match.Groups["parttype"].Value : "unknown";
         result = (match.Groups["filename"].Value, partType, match.Groups["number"].Value);
         return true;
     }