diff --git a/back/src/Kyoo.Core/Controllers/MiscRepository.cs b/back/src/Kyoo.Core/Controllers/MiscRepository.cs index eb32ae8d..8b014840 100644 --- a/back/src/Kyoo.Core/Controllers/MiscRepository.cs +++ b/back/src/Kyoo.Core/Controllers/MiscRepository.cs @@ -62,7 +62,7 @@ public class MiscRepository( }.Select(x => GetSql(x)); string sql = string.Join(" union all ", queries); IEnumerable ret = await database.QueryAsync(sql); - return ret.Where(x => x != null).ToArray() as Image[]; + return ret.ToArray() as Image[]; } public async Task DownloadMissingImages()