From ee415d0e500d965912c6e2f5d30157c9eed0e42a Mon Sep 17 00:00:00 2001 From: Ade Date: Fri, 4 Sep 2015 18:32:15 +1200 Subject: [PATCH] Fixes #2347 --- headphones/lastfm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/lastfm.py b/headphones/lastfm.py index 93534693..720c8dd9 100644 --- a/headphones/lastfm.py +++ b/headphones/lastfm.py @@ -116,7 +116,7 @@ def getArtists(): return logger.info("Fetching artists from Last.FM for username: %s", headphones.CONFIG.LASTFM_USERNAME) - data = request_lastfm("library.getartists", limit=10000, user=headphones.CONFIG.LASTFM_USERNAME) + data = request_lastfm("library.getartists", limit=1000, user=headphones.CONFIG.LASTFM_USERNAME) if data and "artists" in data: artistlist = []