mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-01 13:23:59 +00:00
Increase the limit for the search server from 7 to 20, because the results are weirdly ordered and we sometimes one get the wrong ones
This commit is contained in:
@@ -183,7 +183,7 @@ class Cluster(QtCore.QObject, Item):
|
||||
artist=self.metadata.get('artist', ''),
|
||||
release=self.metadata.get('album', ''),
|
||||
tracks=str(len(self.files)),
|
||||
limit=7)
|
||||
limit=25)
|
||||
|
||||
@staticmethod
|
||||
def cluster(files, threshold):
|
||||
|
||||
@@ -511,7 +511,7 @@ class File(LockableObject, Item):
|
||||
tnum=self.metadata.get('tracknumber', ''),
|
||||
tracks=self.metadata.get('totaltracks', ''),
|
||||
qdur=str(self.metadata.length / 2000),
|
||||
limit=7)
|
||||
limit=25)
|
||||
|
||||
def set_pending(self):
|
||||
if self.state == File.REMOVED:
|
||||
|
||||
Reference in New Issue
Block a user