Apply suggestions

This commit is contained in:
crobibero 2020-04-23 07:51:04 -06:00
parent 7db3b035a6
commit c7c2f9da90
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ namespace Jellyfin.Api.Controllers
PreferredMetadataLanguage = _config.Configuration.PreferredMetadataLanguage
};
return Ok(result);
return result;
}
/// <summary>
@ -108,7 +108,7 @@ namespace Jellyfin.Api.Controllers
public ActionResult<StartupUserDto> GetFirstUser()
{
var user = _userManager.Users.First();
return Ok(new StartupUserDto { Name = user.Name, Password = user.Password });
return new StartupUserDto { Name = user.Name, Password = user.Password };
}
/// <summary>