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

Fixed user Index

pull/12798/head
JPVenson 4 months ago
parent 2d4f7f725f
commit 8dbbb3e243

@ -292,7 +292,7 @@ public class MigrateLibraryDb : IMigrationRoutine
private (UserData? Data, string? LegacyUserDataKey) GetUserData(ImmutableArray<User> users, SqliteDataReader dto)
{
var indexOfUser = dto.GetInt32(1);
var user = users.ElementAtOrDefault(indexOfUser - 1);
var user = users.ElementAtOrDefault(indexOfUser + 1);
if (user is null)
{

Loading…
Cancel
Save