aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2023-05-23 15:44:47 +0200
committerBond_009 <bond.009@outlook.com>2023-06-28 17:40:00 +0200
commit83d6f21fd021c66ab3b1f6501ecdfd016fee540f (patch)
tree97ea0cac99c9bd9efb1bb2a44377842d7bfd2c78 /Emby.Naming
parentb5f0760db8dba96e9edd67d4b9c914cf25c3d26a (diff)
Fix clean regex
Diffstat (limited to 'Emby.Naming')
-rw-r--r--Emby.Naming/Audio/AlbumParser.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Naming/Audio/AlbumParser.cs b/Emby.Naming/Audio/AlbumParser.cs
index 73424a134..97961778f 100644
--- a/Emby.Naming/Audio/AlbumParser.cs
+++ b/Emby.Naming/Audio/AlbumParser.cs
@@ -23,7 +23,7 @@ namespace Emby.Naming.Audio
_options = options;
}
- [GeneratedRegex(@"([-\.\(\)]|\s+)")]
+ [GeneratedRegex(@"[-\.\(\)\s]+")]
private static partial Regex CleanRegex();
/// <summary>