This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
2022.801
Breaking Changes
GetToken()
now returns aTask
(instead ofValueTask
), and has a string parameter containing the last session id (which can be null):
protected override async Task<IUbisoftToken> GetToken(string lastSessionId)
{
return await getToken().ConfigureAwait(false);
}
What's Changed
- change method signature to accept a sessionid and a task over valuetask by @aspriddell in #322
- Add geolocation api by @aspriddell in #323
Full Changelog: 2022.702...2022.801