mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
Fix incorrect escaping in regex pattern
This commit is contained in:
@@ -149,7 +149,7 @@ namespace Emby.Server.Implementations.Library
|
||||
}
|
||||
|
||||
// Ignore samples
|
||||
Match m = Regex.Match(filename,"\bsample\b",RegexOptions.IgnoreCase);
|
||||
Match m = Regex.Match(filename,@"\bsample\b",RegexOptions.IgnoreCase);
|
||||
|
||||
return m.Success;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user