diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2022-10-09 09:02:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-09 09:02:12 +0200 |
| commit | 97a1113223f977cf12a72f66eed1d4004438b840 (patch) | |
| tree | d20d1446d7e9f29baf3bf72c28505bea35b00971 | |
| parent | 9843a5426d3034651a257282d8d3170b60dae467 (diff) | |
| parent | 2358028e3f02f07b52483b01c2a8237ae0795871 (diff) | |
Merge pull request #8520 from anthonylavado/add-extras
Add extras with "Other" as a label
| -rw-r--r-- | Emby.Naming/Common/NamingOptions.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Emby.Naming/Common/NamingOptions.cs b/Emby.Naming/Common/NamingOptions.cs index ec0aeb95f..513733ab5 100644 --- a/Emby.Naming/Common/NamingOptions.cs +++ b/Emby.Naming/Common/NamingOptions.cs @@ -530,6 +530,12 @@ namespace Emby.Naming.Common MediaType.Video), new ExtraRule( + ExtraType.Unknown, + ExtraRuleType.DirectoryName, + "other", + MediaType.Video), + + new ExtraRule( ExtraType.Trailer, ExtraRuleType.Filename, "trailer", @@ -647,6 +653,12 @@ namespace Emby.Naming.Common ExtraType.Unknown, ExtraRuleType.Suffix, "-extra", + MediaType.Video), + + new ExtraRule( + ExtraType.Unknown, + ExtraRuleType.Suffix, + "-other", MediaType.Video) }; |
