From 894d1bc70eb6746e902ac1e36d46631117d30007 Mon Sep 17 00:00:00 2001 From: Marinus Schraal Date: Sat, 6 Jan 2018 15:30:17 +0100 Subject: [PATCH] albumartcache: Fix order in method call --- gnomemusic/albumartcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnomemusic/albumartcache.py b/gnomemusic/albumartcache.py index 89a1611b1..f9954cae2 100644 --- a/gnomemusic/albumartcache.py +++ b/gnomemusic/albumartcache.py @@ -428,7 +428,7 @@ class AlbumArtCache(GObject.GObject): success, cache_path = MediaArt.get_path(artist, album, "album") if not success: - self._lookup_remote(item, callback, itr, art_size) + self._lookup_remote(item, art_size, callback, itr) self._discoverer_items[item.get_url()] = [item, art_size, callback, itr, cache_path] -- GitLab