From c9bbd96fa6fd99ddd88e6744a6209af89d7e4954 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 21 Jun 2012 22:25:42 -0400 Subject: [PATCH] Make sure to start the resolver after installing it --- src/libtomahawk/accounts/spotify/SpotifyAccount.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/libtomahawk/accounts/spotify/SpotifyAccount.cpp b/src/libtomahawk/accounts/spotify/SpotifyAccount.cpp index 94323f17f..194d75b53 100644 --- a/src/libtomahawk/accounts/spotify/SpotifyAccount.cpp +++ b/src/libtomahawk/accounts/spotify/SpotifyAccount.cpp @@ -291,7 +291,11 @@ SpotifyAccount::resolverInstalled(const QString& resolverId) { // We requested this install, so we want to launch it hookupResolver(); - AccountManager::instance()->enableAccount( this ); + + if ( enabled() ) + authenticate(); + else + AccountManager::instance()->enableAccount( this ); } }