Fix view switching on poll closed.

Wrong variable was used.
This commit is contained in:
armored-dragon 2024-09-04 16:13:59 -05:00
parent 2a7bfad711
commit 89f6296e6c
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -627,7 +627,7 @@ Rectangle {
// Close the poll and remove it from the list of active polls
case "close_poll":
if (message.isOurPoll) current_page = "poll_list"
if (message.change_page == true) current_page = "poll_list"
// Find the poll with the matching ID and remove it from active polls
for (var i = 0; i < active_polls.count; i++) {