diff options
| author | furdiburd <93724729+furdiburd@users.noreply.github.com> | 2026-03-29 12:38:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-29 12:38:46 +0200 |
| commit | 921a364bb0b94b54f7a3215accdb0bc5f51ef9e7 (patch) | |
| tree | 54f066cfb062260a0bd0f7e59ee324552968a527 /Emby.Server.Implementations | |
| parent | ad9ebe5baa166d26e15cb2472de7914c89fe7108 (diff) | |
Add ignore patterns for Hungarian sample files (#16238)
* Add ignore patterns for Hungarian sample files
Added ignore patterns for Hungarian sample files.
* Removed leftover spaces
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Library/IgnorePatterns.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Library/IgnorePatterns.cs b/Emby.Server.Implementations/Library/IgnorePatterns.cs index 59ccb9e2c..197ec42c5 100644 --- a/Emby.Server.Implementations/Library/IgnorePatterns.cs +++ b/Emby.Server.Implementations/Library/IgnorePatterns.cs @@ -31,6 +31,20 @@ namespace Emby.Server.Implementations.Library "**/*.sample.?????", "**/sample/*", + // Avoid adding Hungarian sample files + // https://github.com/jellyfin/jellyfin/issues/16237 + "**/minta.?", + "**/minta.??", + "**/minta.???", // Matches minta.mkv + "**/minta.????", // Matches minta.webm + "**/minta.?????", + "**/*.minta.?", + "**/*.minta.??", + "**/*.minta.???", + "**/*.minta.????", + "**/*.minta.?????", + "**/minta/*", + // Directories "**/metadata/**", "**/metadata", |
