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

do not ignore exceptions during migration execution

pull/2523/head
Mark Monteiro 5 years ago committed by GitHub
parent 5a0f1fe848
commit 7ecb16a46e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -57,7 +57,7 @@ namespace Jellyfin.Server.Migrations
catch (Exception ex)
{
logger.LogError(ex, "Cannot apply migration {Name}", updater.Name);
continue;
throw;
}
logger.LogInformation("Migration {Name} applied successfully", updater.Name);

Loading…
Cancel
Save