Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/ff994d594a815f284102a3bdae128b822f600ffe You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed error in unicode cleanup code removing most non-latin characters instead of just invalid ones.

pull/2935/head
Taloth Saldono 6 years ago
parent 0214ced8f0
commit ff994d594a

@ -8,7 +8,7 @@ namespace NzbDrone.Core.Indexers
{
private static readonly Regex ReplaceEntitiesRegex = new Regex("&[a-z]+;", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Regex ReplaceUnicodeRegex = new Regex(@"[^\x09\x0A\x0D\x20-\xD7FF\xE000-\xFFFD\x10000-x10FFFF]", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Regex ReplaceUnicodeRegex = new Regex(@"[^\x09\x0A\x0D\u0020-\uD7FF\uE000-\uFFFD]", RegexOptions.Compiled | RegexOptions.IgnoreCase);
public static string ReplaceEntities(string content)
{

Loading…
Cancel
Save