aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/CleanStringParser.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-04-07 21:36:07 +0200
committerShadowghost <Ghost_of_Stone@web.de>2026-04-07 21:36:07 +0200
commit24a0df9a39f16143ce7ae61f3a07dbe7756d4124 (patch)
tree3ca1d4e3e215687c0c1a5ec2120cf280c2fddc0b /Emby.Naming/Video/CleanStringParser.cs
parente44821e8f6bee9065f0cf22c0b62be3cb4ea2fa6 (diff)
parentb28a5794ec2947bd8333be871c3b5ddeeedbc9d4 (diff)
Merge remote-tracking branch 'upstream/master' into perf-rebased
Diffstat (limited to 'Emby.Naming/Video/CleanStringParser.cs')
-rw-r--r--Emby.Naming/Video/CleanStringParser.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Naming/Video/CleanStringParser.cs b/Emby.Naming/Video/CleanStringParser.cs
index a336f8fbd1..f27f8bc0a4 100644
--- a/Emby.Naming/Video/CleanStringParser.cs
+++ b/Emby.Naming/Video/CleanStringParser.cs
@@ -44,7 +44,7 @@ namespace Emby.Naming.Video
var match = expression.Match(name);
if (match.Success && match.Groups.TryGetValue("cleaned", out var cleaned))
{
- newName = cleaned.Value;
+ newName = cleaned.Value.Trim();
return true;
}