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

update the connectuserid for emby users

pull/1741/head
tidusjar 7 years ago
parent a383839bd0
commit a06496bb03

@ -123,6 +123,8 @@ namespace Ombi.Schedule.Jobs.Emby
{
// Do we need to update this user?
existingEmbyUser.UserName = embyUser.Name;
existingEmbyUser.EmbyConnectUserId =
embyUser.ConnectUserId.HasValue() ? embyUser.ConnectUserId : string.Empty;
await _userManager.UpdateAsync(existingEmbyUser);
}

Loading…
Cancel
Save