summaryrefslogtreecommitdiff
path: root/nephilim/plugins/AlbumCover.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/plugins/AlbumCover.py')
-rw-r--r--nephilim/plugins/AlbumCover.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nephilim/plugins/AlbumCover.py b/nephilim/plugins/AlbumCover.py
index ee51903..5330189 100644
--- a/nephilim/plugins/AlbumCover.py
+++ b/nephilim/plugins/AlbumCover.py
@@ -67,7 +67,7 @@ class wgAlbumCover(QtGui.QLabel):
def refresh(self):
logging.info("refreshing cover")
- song = self.p.mpclient.getCurrentSong()
+ song = self.p.mpclient.current_song()
if not song:
self.clear()
self.cover_loaded = False
@@ -108,7 +108,7 @@ class wgAlbumCover(QtGui.QLabel):
self.set_cover(cover, write)
def fetch_local_manual(self):
- song = self.p.mpclient.getCurrentSong()
+ song = self.p.mpclient.current_song()
if not song:
return
@@ -157,7 +157,7 @@ class wgAlbumCover(QtGui.QLabel):
return None
def fetch_amazon_manual(self):
- song = self.p.mpclient.getCurrentSong()
+ song = self.p.mpclient.current_song()
if not song:
return
cover = self.fetch_amazon(song)