diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-10-28 02:19:19 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-10-28 02:19:19 +0200 |
commit | dd0e996081ae820a0f16b5a6854a8a6274c5edf5 (patch) | |
tree | 9d9f0ba7ff51b546d15106f71841f9de42a09f2b /api/logic/net/NetAction.h | |
parent | 3d94fb8d24c6012d5d1cdee61c99e62847c06ad9 (diff) | |
download | PrismLauncher-dd0e996081ae820a0f16b5a6854a8a6274c5edf5.tar.gz PrismLauncher-dd0e996081ae820a0f16b5a6854a8a6274c5edf5.tar.bz2 PrismLauncher-dd0e996081ae820a0f16b5a6854a8a6274c5edf5.zip |
GH-1697 always stale files tolerate errors if a local copy is present
This fixes the situation when liteloader snapshot site is broken
and there's an older local snapshot already present.
Diffstat (limited to 'api/logic/net/NetAction.h')
-rw-r--r-- | api/logic/net/NetAction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/api/logic/net/NetAction.h b/api/logic/net/NetAction.h index 07456ce1..aee68230 100644 --- a/api/logic/net/NetAction.h +++ b/api/logic/net/NetAction.h @@ -29,7 +29,8 @@ enum JobStatus Job_InProgress, Job_Finished, Job_Failed, - Job_Aborted + Job_Aborted, + Job_Failed_Proceed }; typedef std::shared_ptr<class NetAction> NetActionPtr; |