From f3a5ed2e72bc408a55b2fc70e5bb891817c60611 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Thu, 5 Oct 2023 13:49:52 +0100 Subject: [PATCH] Track selection dialog bugfix If multiple tracks had the name name, only one would be listed. --- app/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/models.py b/app/models.py index d746ccf..3df1f69 100644 --- a/app/models.py +++ b/app/models.py @@ -728,7 +728,6 @@ class Tracks(Base): select(cls) .options(joinedload(Tracks.playdates)) .where(cls.title.like(f"{text}%")) - .group_by(cls.title) .order_by(cls.title) ) .scalars()