From 89f6296e6c0398e798cbb68e50427c7151570489 Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Wed, 4 Sep 2024 16:13:59 -0500 Subject: [PATCH] Fix view switching on poll closed. Wrong variable was used. --- applications/voting/vote.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/voting/vote.qml b/applications/voting/vote.qml index 8e1159e..fcd71a9 100644 --- a/applications/voting/vote.qml +++ b/applications/voting/vote.qml @@ -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++) {