Skip to content

Commit

Permalink
Fix IsActive
Browse files Browse the repository at this point in the history
  • Loading branch information
kazimuth committed Jan 23, 2025
1 parent ad9483a commit 1ef6919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public bool IsActive
{
get
{
return state is SubscriptionState.Ended;
return state is SubscriptionState.Active || state is SubscriptionState.LegacyActive;
}
}

Expand Down

0 comments on commit 1ef6919

Please sign in to comment.