Browse Source

Update UserLookupService.cs

pull/2902/head
Alper Ebicoglu 6 years ago
committed by GitHub
parent
commit
8f7baa5bf9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      modules/users/src/Volo.Abp.Users.Domain/Volo/Abp/Users/UserLookupService.cs

4
modules/users/src/Volo.Abp.Users.Domain/Volo/Abp/Users/UserLookupService.cs

@ -32,7 +32,7 @@ namespace Volo.Abp.Users
public async Task<TUser> FindByIdAsync(Guid id, CancellationToken cancellationToken = default)
{
var localUser = await _userRepository.FindAsync(id,cancellationToken: cancellationToken);
var localUser = await _userRepository.FindAsync(id, cancellationToken: cancellationToken);
if (ExternalUserLookupServiceProvider == null)
{
@ -149,4 +149,4 @@ namespace Volo.Abp.Users
}
}
}
}
}

Loading…
Cancel
Save