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