update some comments

Co-Authored-By: Bond-009 <bond.009@outlook.com>
This commit is contained in:
dkanada
2020-02-01 23:36:40 +09:00
committed by GitHub
parent 7df6f8d54e
commit 692a9bfdd0
3 changed files with 4 additions and 4 deletions

View File

@@ -291,10 +291,10 @@ namespace Emby.Server.Implementations.Library
&& authenticationProvider != null
&& !(authenticationProvider is DefaultAuthenticationProvider))
{
// trust the username returned by the authentication provider
// Trust the username returned by the authentication provider
username = updatedUsername;
// search the database for the user again
// Search the database for the user again
// the authentication provider might have created it
user = Users
.FirstOrDefault(i => string.Equals(username, i.Name, StringComparison.OrdinalIgnoreCase));