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

Update Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs

Co-authored-by: Bond-009 <bond.009@outlook.com>
pull/10234/head
Tim Eisele 2 years ago committed by GitHub
parent 61a49e94c4
commit bce45992d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -112,7 +112,7 @@ public class CleanupCollectionAndPlaylistPathsTask : IScheduledTask
private void CleanupLinkedChildren<T>(T folder, CancellationToken cancellationToken)
where T : Folder
{
List<LinkedChild> itemsToRemove = null;
List<LinkedChild>? itemsToRemove = null;
foreach (var linkedChild in folder.LinkedChildren)
{
if (!File.Exists(folder.Path))

Loading…
Cancel
Save