Metadata Downloading (#3525)

This commit is contained in:
Joe Milazzo
2025-02-05 16:16:44 -06:00
committed by GitHub
parent eb66763078
commit f4fd7230ea
108 changed files with 6296 additions and 484 deletions
+2 -2
View File
@@ -45,8 +45,8 @@ public class WantToReadSyncService : IWantToReadSyncService
var license = (await _unitOfWork.SettingsRepository.GetSettingAsync(ServerSettingKey.LicenseKey)).Value;
var users = await _unitOfWork.UserRepository.GetAllUsersAsync(AppUserIncludes.WantToRead);
foreach (var user in users)
var users = await _unitOfWork.UserRepository.GetAllUsersAsync(AppUserIncludes.WantToRead | AppUserIncludes.UserPreferences);
foreach (var user in users.Where(u => u.UserPreferences.WantToReadSync))
{
if (string.IsNullOrEmpty(user.MalUserName) && string.IsNullOrEmpty(user.AniListAccessToken)) continue;