Updating readme

This commit is contained in:
watsonb8
2020-12-19 17:10:40 -05:00
parent 89b928bd00
commit a8d4e6ff1d
3 changed files with 23 additions and 2 deletions

View File

@ -185,7 +185,10 @@ namespace Aurora.Design.Views.Party
/// <returns></returns>
public override Task OnInactive()
{
this._eventCancellationTokenSource.Cancel();
if(this._eventCancellationTokenSource != null){
this._eventCancellationTokenSource.Cancel();
}
return Task.FromResult<object>(null);
}