mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Fix incorrect escaping in regex pattern
This commit is contained in:
parent
0794a3edf4
commit
da842d5a73
@ -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…
x
Reference in New Issue
Block a user