Compare commits

..

1 Commits

Author SHA1 Message Date
hasslesstech 5393e4a87a [P] Add TRACK_ID selection in MapView
Component testing / Hub testing (push) Successful in 32s
Component testing / Store testing (push) Successful in 26s
Component testing / Integration smoke testing (push) Successful in 2m19s
2026-03-25 21:35:21 +02:00
+1 -1
View File
@@ -96,7 +96,7 @@ async def create_processed_agent_data(data: List[ProcessedAgentData], user_id: i
created_records = [dict(row._mapping) for row in result.fetchall()]
session.commit()
for record in sorted(created_records, key = lambda x: x['timestamp']):
for record in created_records:
await send_data_to_subscribers(jsonable_encoder(record))
return created_records
except Exception as err: