diff --git a/src/FilterLists.Services/Snapshot/Snapshot.cs b/src/FilterLists.Services/Snapshot/Snapshot.cs index 5c57106ac..d2638407c 100644 --- a/src/FilterLists.Services/Snapshot/Snapshot.cs +++ b/src/FilterLists.Services/Snapshot/Snapshot.cs @@ -187,7 +187,8 @@ private void UpdateUpdatedDate() { if (isUpdatedDateFromGitHub) return; - List.UpdatedDate = DateTime.Now; + if (List.Snapshots.Any(s => s.WasUpdated && s.WasSuccessful)) + List.UpdatedDate = DateTime.Now; } private async Task GetLinesFrom7Zip(Stream stream)