diff --git a/src/FilterLists.Services/FilterList/MappingProfiles/ListDetailsDtoMappingProfile.cs b/src/FilterLists.Services/FilterList/MappingProfiles/ListDetailsDtoMappingProfile.cs index 9cfe4d92e..145ca8bd6 100644 --- a/src/FilterLists.Services/FilterList/MappingProfiles/ListDetailsDtoMappingProfile.cs +++ b/src/FilterLists.Services/FilterList/MappingProfiles/ListDetailsDtoMappingProfile.cs @@ -15,12 +15,7 @@ public ListDetailsDtoMappingProfile() => .ForMember(d => d.Maintainers, c => c.MapFrom(l => l.FilterListMaintainers.Select(m => m.Maintainer))) .ForMember(d => d.Tags, c => c.MapFrom(l => l.FilterListTags.Select(m => m.Tag))) .ForMember(d => d.RuleCount, - c => c.MapFrom(l => - l.Snapshots - .OrderByDescending(s => s.CreatedDateUtc) - .FirstOrDefault() - .SnapshotRules - .Count)) + c => c.MapFrom(l => 0)) .ForMember(d => d.UpdatedDate, c => c.MapFrom(l => l.ModifiedDateUtc));