mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Fix incorrect escaping in regex pattern
This commit is contained in:
parent
0794a3edf4
commit
da842d5a73
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue