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

Use ToList instead of AsEnumerable due to delayed execution

pull/3555/head
Claus Vium 5 years ago
parent 203825f772
commit 340b585234

@ -96,7 +96,7 @@ namespace Jellyfin.Server.Implementations.Users
.Include(user => user.Preferences)
.Include(user => user.AccessSchedules)
.Include(user => user.ProfileImage)
.AsEnumerable();
.ToList();
}
}

Loading…
Cancel
Save