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

Updated TryGetGuid for migration

pull/12798/head
JPVenson 4 months ago
parent 3d87d0faa2
commit 07ed9a3ea4

@ -127,8 +127,16 @@ namespace Emby.Server.Implementations.Data
return false;
}
result = reader.GetGuid(index);
return true;
try
{
result = reader.GetGuid(index);
return true;
}
catch
{
result = Guid.Empty;
return false;
}
}
public static bool TryGetString(this SqliteDataReader reader, int index, out string result)

Loading…
Cancel
Save