Consider both dates when clearing the cache

This commit is contained in:
halgari 2019-12-16 15:19:23 -07:00
parent 9bae8a9c22
commit 2b02261629

View File

@ -430,8 +430,10 @@ namespace Wabbajack.Lib.NexusApi
parts.Contains(p.game.NexusName) && parts.Contains(p.mod.mod_id.ToString()));
if (found != null)
{
var should_remove =
File.GetLastWriteTimeUtc(f) <= found.mod.latest_file_update.AsUnixTime();
var a = found.mod.latest_file_update.AsUnixTime();
// Mod activity could hide files
var b = found.mod.latest_mod_activity.AsUnixTime();
var should_remove = File.GetLastWriteTimeUtc(f) <= (a > b ? a : b);
return (should_remove, f);
}