remove the nexus api time limit compleately, it's useless

This commit is contained in:
Timothy Baldridge 2019-10-03 16:22:43 -06:00
parent a186411e0b
commit dda13d78c8
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
* Set Oblivion's MO2 names to `Oblivion` not `oblivion`
* Fix validation tests to run in CI
* Add `check for broken archives` batch functionality
* Remove nexus timeout for login, it's pointless.
#### Version 0.9.4 - 10/2/2019
* Point github icon to https://github.com/wabbajack-tools/wabbajack

View File

@ -56,7 +56,7 @@ namespace Wabbajack.NexusApi
{
// check if there exists a cached api key
var fi = new FileInfo(API_KEY_CACHE_FILE);
if (fi.Exists && fi.LastWriteTime > DateTime.Now.AddHours(-72))
if (fi.Exists)
{
return File.ReadAllText(API_KEY_CACHE_FILE);
}