mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-05 14:02:21 +02:00
Fix view switching on poll closed.
Wrong variable was used.
This commit is contained in:
parent
2a7bfad711
commit
89f6296e6c
1 changed files with 1 additions and 1 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Reference in a new issue