Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/ad2101ce52999fccf51e52510729fd36e3495369
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -6218,13 +6218,13 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
private void InsertMediaAttachments ( byte [ ] idBlob , List < MediaAttachment > attachments , IDatabaseConnection db )
{
var startIndex = 0 ;
var limit = 10 ;
var insertAtOnce = 10 ;
while ( startIndex < attachments . Count )
{
var insertText = new StringBuilder ( string . Format ( "insert into mediaattachments ({0}) values " , string . Join ( "," , _mediaAttachmentSaveColumns ) ) ) ;
var endIndex = Math . Min ( attachments . Count , startIndex + limit ) ;
var endIndex = Math . Min ( attachments . Count , startIndex + insertAtOnce ) ;
for ( var i = startIndex ; i < endIndex ; i + + )
{
@ -6266,7 +6266,7 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
statement . Reset ( ) ;
statement . MoveNext ( ) ;
}
startIndex + = limit ;
startIndex + = insertAtOnce ;
}
}