diff --git a/Aurora/Design/Views/Party/PartyViewModel.cs b/Aurora/Design/Views/Party/PartyViewModel.cs
index da24c1f..1ca7a70 100644
--- a/Aurora/Design/Views/Party/PartyViewModel.cs
+++ b/Aurora/Design/Views/Party/PartyViewModel.cs
@@ -185,7 +185,10 @@ namespace Aurora.Design.Views.Party
///
public override Task OnInactive()
{
- this._eventCancellationTokenSource.Cancel();
+ if(this._eventCancellationTokenSource != null){
+ this._eventCancellationTokenSource.Cancel();
+ }
+
return Task.FromResult