From 2358028e3f02f07b52483b01c2a8237ae0795871 Mon Sep 17 00:00:00 2001 From: Anthony Lavado Date: Sat, 8 Oct 2022 22:40:00 -0400 Subject: [PATCH] Add extras with "Other" as a label --- Emby.Naming/Common/NamingOptions.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Emby.Naming/Common/NamingOptions.cs b/Emby.Naming/Common/NamingOptions.cs index ec0aeb95fb..513733ab55 100644 --- a/Emby.Naming/Common/NamingOptions.cs +++ b/Emby.Naming/Common/NamingOptions.cs @@ -529,6 +529,12 @@ namespace Emby.Naming.Common "extras", MediaType.Video), + new ExtraRule( + ExtraType.Unknown, + ExtraRuleType.DirectoryName, + "other", + MediaType.Video), + new ExtraRule( ExtraType.Trailer, ExtraRuleType.Filename, @@ -647,6 +653,12 @@ namespace Emby.Naming.Common ExtraType.Unknown, ExtraRuleType.Suffix, "-extra", + MediaType.Video), + + new ExtraRule( + ExtraType.Unknown, + ExtraRuleType.Suffix, + "-other", MediaType.Video) };