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

Merge pull request from cvium/dont-delete-artwork

Do not touch "old" local artwork unless saving locally
pull/5751/head^2
Bond-009 4 years ago committed by GitHub
commit 58fb3e9610
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -172,7 +172,9 @@ namespace MediaBrowser.Providers.Manager
SetImagePath(item, type, imageIndex, savedPaths[0]);
// Delete the current path
if (currentImageIsLocalFile && !savedPaths.Contains(currentImagePath, StringComparer.OrdinalIgnoreCase))
if (currentImageIsLocalFile
&& !savedPaths.Contains(currentImagePath, StringComparer.OrdinalIgnoreCase)
&& (saveLocally || currentImagePath.Contains(_config.ApplicationPaths.InternalMetadataPath, StringComparison.OrdinalIgnoreCase)))
{
var currentPath = currentImagePath;

Loading…
Cancel
Save