Fixed home tab having only 10 items instead of 30

This commit is contained in:
RemixDev 2020-11-20 17:12:41 +01:00
parent 2a277db76a
commit 89ab1e0f96
No known key found for this signature in database
GPG key ID: B33962B465BDB51C

2
app.py
View file

@ -160,7 +160,7 @@ class deemix:
def get_home(self, dz):
if not self.homeCache:
self.homeCache = dz.api.get_chart()
self.homeCache = dz.api.get_chart(limit=30)
return self.homeCache
def getDownloadFolder(self):