mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
only set UpdatedDate on new hash rather than including first hash
ref #485
This commit is contained in:
parent
4576ab9ea0
commit
0ef96881a7
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue