Merge pull request #1528 from Unnoen/ips4-logged-out-fix

Fix AbstractIPS4OAuthDownloader's CriticalFailureIntervention
This commit is contained in:
Timothy Baldridge 2021-07-04 14:08:32 -06:00 committed by GitHub
commit 89c0c651b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -350,9 +350,9 @@ namespace Wabbajack.Lib.Downloaders
{
if (ex.Code == 400)
{
throw new CriticalFailureIntervention(
$"You have been logged out of {siteName} for reasons out of our control, please log back in via the settings panel",
$"Logged out of {siteName}");
Utils.ErrorThrow(new CriticalFailureIntervention(
$"You have been logged out of {siteName} for reasons out of our control, please re-login via the settings panel.",
$"Bad Request: Logged Out - {siteName}"));
}
}