mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
remove the nexus api time limit compleately, it's useless
This commit is contained in:
parent
a186411e0b
commit
dda13d78c8
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user