You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that my context does not reflect the changes when I update my account details (email). I think it would be good if the context applies the changes so that I do not need to recreate it.
..
awaitUpdateAccount(server,accountKey);returnnewAcmeContext(server,accountKey);}/// <summary>/// Update account to agree to terms in case they changed./// </summary>/// <remarks>Context is not returned since it needs to be recreated in order to reflect the changes.</remarks>/// <param name="server">Server URL</param>/// <param name="accountKey">Certificate Key</param>/// <returns></returns>privateasyncTaskUpdateAccount(Uriserver,IKeyaccountKey){varacme=newAcmeContext(server,accountKey);varaccount=awaitacme.Account();awaitaccount.Update(new[]{$"mailto:info@{DomainName}"},true);}
The text was updated successfully, but these errors were encountered:
I noticed that my context does not reflect the changes when I update my account details (email). I think it would be good if the context applies the changes so that I do not need to recreate it.
The text was updated successfully, but these errors were encountered: