refactor: 🎨

This commit is contained in:
2025-01-09 02:07:48 +01:00
parent 5381a78d4a
commit d2baaacbc8
3 changed files with 43 additions and 16 deletions

View File

@ -119,7 +119,7 @@ class GPXHandler:
def getTracksInTime(self, start, end):
tracks = self.__dbSession.query(Track).filter(Track.start.between(start, end)).all()
tracks = self.__dbSession.query(Track).filter(Track.date.between(start, end)).all()
track_list = [
{