1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-30 19:15:08 +01:00

Fix an ancient typo that was breaking last.fm scrobbling reporting.

This commit is contained in:
David Sansome 2013-04-15 21:22:45 +10:00
parent bb0f7412be
commit 8e3581af64

View File

@ -468,7 +468,7 @@ bool LastFMService::InitScrobbler() {
connect(scrobbler_, SIGNAL(scrobblesSubmitted(QList<lastfm::Track>)), SIGNAL(ScrobbleSubmitted()));
connect(scrobbler_, SIGNAL(nowPlayingError(int,QString)), SIGNAL(ScrobbleError(int)));
#else
connect(scrobbler_, SIGNAL(status(int)), SIGNAL(ScrobblerStatus(int)));
connect(scrobbler_, SIGNAL(status(int)), SLOT(ScrobblerStatus(int)));
#endif
return true;
}