Implemented partial chapter support. Fixed some edge case where if library scan was skipped due to no modififcation on disk, whole library would be removed. Removed above code for testing.
This commit is contained in:
parent
b30560fdda
commit
57f74d3de3
3 changed files with 28 additions and 18 deletions
|
@ -102,10 +102,6 @@ namespace API.Controllers
|
|||
.Include(u => u.UserPreferences)
|
||||
.SingleOrDefaultAsync(x => x.NormalizedUserName == loginDto.Username.ToUpper());
|
||||
|
||||
var debugUsers = await _userManager.Users.Select(x => x.NormalizedUserName).ToListAsync();
|
||||
|
||||
_logger.LogInformation($"All Users: {string.Join(",", debugUsers)}");
|
||||
|
||||
if (user == null) return Unauthorized("Invalid username");
|
||||
|
||||
var result = await _signInManager
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue