Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/9148820d89ff58b53c8fa6d8ced33c025187dd12
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
0 deletions
@ -19,6 +19,7 @@ namespace Jellyfin.Extensions.Tests
[InlineData("", 'q', "")]
[InlineData("Banana split", ' ', "Banana")]
[InlineData("Banana split", 'q', "Banana split")]
[InlineData("Banana split 2", ' ', "Banana")]
public void LeftPart_ValidArgsCharNeedle_Correct ( string str , char needle , string expectedResult )
{
var result = str . AsSpan ( ) . LeftPart ( needle ) . ToString ( ) ;
@ -30,6 +31,7 @@ namespace Jellyfin.Extensions.Tests
[InlineData("Banana split", ' ', "split")]
[InlineData("Banana split", 'q', "Banana split")]
[InlineData("Banana split.", '.', "")]
[InlineData("Banana split 2", ' ', "2")]
public void RightPart_ValidArgsCharNeedle_Correct ( string str , char needle , string expectedResult )
{
var result = str . AsSpan ( ) . RightPart ( needle ) . ToString ( ) ;