From 57ab3f73db34fb4fb128d3125aa63144d2a21743 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Sat, 19 May 2012 20:26:01 -0400 Subject: [PATCH] Debug and a potential windows fix --- src/accounts/spotify/SpotifyAccount.cpp | 6 ++++++ src/libtomahawk/utils/TomahawkUtils.cpp | 1 + 2 files changed, 7 insertions(+) diff --git a/src/accounts/spotify/SpotifyAccount.cpp b/src/accounts/spotify/SpotifyAccount.cpp index 3a740f551..abe8055be 100644 --- a/src/accounts/spotify/SpotifyAccount.cpp +++ b/src/accounts/spotify/SpotifyAccount.cpp @@ -200,6 +200,7 @@ SpotifyAccount::authenticate() if ( m_spotifyResolver.isNull() && state == AtticaManager::Installed ) { // We don;t have the resolver but it has been installed via attica already, so lets just turn it on + qDebug() << "No valid spotify resolver running, but attica reports it is installed, so start it up"; hookupResolver(); } else if ( m_spotifyResolver.isNull() ) @@ -216,8 +217,13 @@ SpotifyAccount::authenticate() } else if ( !m_spotifyResolver.data()->running() ) { + qDebug() << "Spotify resolver exists but stopped, starting"; m_spotifyResolver.data()->start(); } + else + { + qDebug() << "Spotify resolver exists and is running, ignore authentication attempt"; + } emit connectionStateChanged( connectionState() ); } diff --git a/src/libtomahawk/utils/TomahawkUtils.cpp b/src/libtomahawk/utils/TomahawkUtils.cpp index f70a1c149..0e06ebdb8 100644 --- a/src/libtomahawk/utils/TomahawkUtils.cpp +++ b/src/libtomahawk/utils/TomahawkUtils.cpp @@ -830,6 +830,7 @@ unzipFileInFolder( const QString &zipFileName, const QDir &folder ) if ( !out.open( QIODevice::WriteOnly ) ) { tLog() << "Failed to open zip extract file:" << out.errorString() << info.name; + fileInZip.close(); continue; }