aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-12-11 16:02:51 +0100
committercvium <clausvium@gmail.com>2021-12-11 16:02:51 +0100
commit6d6fb1bba309f7566a856be7f9b74e7b48f54231 (patch)
tree0ef5b6428a3df499abd7559c4e783f1913bc0ed2
parent681bfbd535b063f6d4e3c61bf0bc250d4eee9304 (diff)
Rename unknown parttype to "unknown"
-rw-r--r--Emby.Naming/Video/FileStackRule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Naming/Video/FileStackRule.cs b/Emby.Naming/Video/FileStackRule.cs
index 36a765dfb..76b487f42 100644
--- a/Emby.Naming/Video/FileStackRule.cs
+++ b/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;
}