#### Version - 2.5.3.27 - 8/7/2022

* A few fixes for VectorPlexis and LL, you may need to log out and back in from these sites
This commit is contained in:
Timothy Baldridge 2022-08-07 16:19:29 -06:00
parent d0709ffda0
commit e28536513c
3 changed files with 10 additions and 4 deletions

View File

@ -1,5 +1,8 @@
### Changelog
#### Version - 2.5.3.27 - 8/7/2022
* A few fixes for VectorPlexis and LL, you may need to log out and back in from these sites
#### Version - 2.5.3.26 - 8/4/2022
* Use the new VectorPlexis domain
* Use the new LoversLab API domain

View File

@ -255,7 +255,7 @@ namespace Wabbajack
{
StatusText = update.StatusText;
StatusProgress = update.StepsProgress;
return Disposable.Empty;
return Disposable.Empty;
});
};
@ -269,7 +269,10 @@ namespace Wabbajack
await _wjClient.PublishModlist(MachineUrl, System.Version.Parse(Version), mo2Settings.OutputFile, downloadMetadata);
}
_logger.LogInformation("Compiler Finished");
StatusText = "Compilation Completed";
StatusProgress = Percent.Zero;
State = CompilerState.Completed;
}
catch (Exception ex)

View File

@ -7,6 +7,6 @@ public class LoversLabLoginState : OAuth2LoginState
public override string SiteName => "Lovers Lab";
public override string[] Scopes => new[] {"downloads"};
public override string ClientID => "0b543a010bf1a8f0f4c5dae154fce7c3";
public override Uri AuthorizationEndpoint => new("https://loverslab.com/oauth/authorize/");
public override Uri TokenEndpoint => new("https://loverslab.com/oauth/token/");
public override Uri AuthorizationEndpoint => new("https://api.loverslab.com/oauth/authorize/");
public override Uri TokenEndpoint => new("https://api.loverslab.com/oauth/token/");
}