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

Fix clean regex

pull/9799/head
Bond-009 2 years ago committed by Bond_009
parent b5f0760db8
commit 83d6f21fd0

@ -23,7 +23,7 @@ namespace Emby.Naming.Audio
_options = options;
}
[GeneratedRegex(@"([-\.\(\)]|\s+)")]
[GeneratedRegex(@"[-\.\(\)\s]+")]
private static partial Regex CleanRegex();
/// <summary>

@ -23,6 +23,9 @@ public partial class StripCollageBuilder
_skiaEncoder = skiaEncoder;
}
[GeneratedRegex(@"[^\p{IsCJKUnifiedIdeographs}\p{IsCJKUnifiedIdeographsExtensionA}\p{IsKatakana}\p{IsHiragana}\p{IsHangulSyllables}\p{IsHangulJamo}]")]
private static partial Regex NonCjkPatternRegex();
[GeneratedRegex(@"\p{IsArabic}|\p{IsArmenian}|\p{IsHebrew}|\p{IsSyriac}|\p{IsThaana}")]
private static partial Regex IsRtlTextRegex();

Loading…
Cancel
Save