From f32de6beced535d36655c48e966f4ef855c5412f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Lindstr=C3=B6m?= Date: Wed, 14 Dec 2011 13:01:05 +0100 Subject: [PATCH] Use pong instead to check if spotifyApi is online --- src/tomahawkapp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tomahawkapp.cpp b/src/tomahawkapp.cpp index 57b643019..d10832c5f 100644 --- a/src/tomahawkapp.cpp +++ b/src/tomahawkapp.cpp @@ -282,7 +282,7 @@ TomahawkApp::init() GlobalActionManager::instance(); // check if our spotify playlist api server is up and running, and enable spotify playlist drops if so - QNetworkReply* r = TomahawkUtils::nam()->get( QNetworkRequest( QUrl( SPOTIFY_PLAYLIST_API_URL "/playlist/test" ) ) ); + QNetworkReply* r = TomahawkUtils::nam()->get( QNetworkRequest( QUrl( SPOTIFY_PLAYLIST_API_URL "/pong" ) ) ); connect( r, SIGNAL( finished() ), this, SLOT( spotifyApiCheckFinished() ) ); #endif