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

Add back in the login time

pull/3050/head
tidusjar 6 years ago
parent 463faca31b
commit efbc9c1441

@ -150,7 +150,14 @@ namespace Ombi.Controllers
}
user.LastLoggedIn = DateTime.UtcNow;
//await GlobalMutex.Lock(async () => await _userManager.UpdateAsync(user)).ConfigureAwait(false);
try
{
await _userManager.UpdateAsync(user);
}
catch (Exception)
{
}
return new JsonResult(new
{

Loading…
Cancel
Save