Skip to content

Commit

Permalink
Fix overwriting with later date correction (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
gyk4j authored Mar 2, 2024
1 parent c341a96 commit 5ca56d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Wreck/IO/Writer/AbstractTimestampWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public abstract class AbstractTimestampWriter : ITimestampWriter
{
STATS.Count(none);
}
else if(!TimeUtils.IsSameTime(fileSystem, correct))
else if(TimeUtils.IsLaterThan(fileSystem, correct))
{
STATS.Count(required);
val = correct;
Expand Down

0 comments on commit 5ca56d1

Please sign in to comment.