Skip to content

Commit

Permalink
Fix an issue with finished campaigns not being shown in the GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Sep 20, 2024
1 parent 9becb14 commit bd048e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,7 @@ def _update_visibility(self, campaign: DropsCampaign):
finished = bool(self._filters["finished"].get())
priority_only = self._settings.priority_mode is PriorityMode.PRIORITY_ONLY
if (
campaign.remaining_minutes > 0 # don't show sub-only campaigns
campaign.required_minutes > 0 # don't show sub-only campaigns
and (not_linked or campaign.linked)
and (campaign.active or upcoming and campaign.upcoming or expired and campaign.expired)
and (
Expand Down

0 comments on commit bd048e0

Please sign in to comment.