Skip to content

Commit

Permalink
fix: send results online in correct order (not reversed)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-karpov committed Oct 19, 2024
1 parent 0952a37 commit 80894d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sportorg/gui/menu/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,9 @@ def execute(self):
if index >= len(items):
pass
selected_items.append(items[index])
if self.app.current_tab == 1:
# Most recent results are sent last
selected_items = selected_items[::-1]
live_client.send(selected_items)
except Exception as e:
logging.exception(e)
Expand Down

0 comments on commit 80894d3

Please sign in to comment.