Skip to content

Commit 8c3e066

Browse files
committedSep 23, 2011
Get qgis version info from QGIS.org rather than mrcc.com
1 parent 36d86b0 commit 8c3e066

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4633,7 +4633,7 @@ void QgisApp::checkQgisVersion()
46334633
connect( mSocket, SIGNAL( readyRead() ), SLOT( socketReadyRead() ) );
46344634
connect( mSocket, SIGNAL( error( QAbstractSocket::SocketError ) ),
46354635
SLOT( socketError( QAbstractSocket::SocketError ) ) );
4636-
mSocket->connectToHost( "mrcc.com", 80 );
4636+
mSocket->connectToHost( "qgis.org", 80 );
46374637
}
46384638

46394639
void QgisApp::socketConnected()
@@ -4642,7 +4642,7 @@ void QgisApp::socketConnected()
46424642
mVersionMessage = "";
46434643
// send the qgis version string
46444644
// os << QGIS_VERSION << "\r\n";
4645-
os << "GET /qgis/version.txt HTTP/1.0\n\n";
4645+
os << "GET /version.txt HTTP/1.0\n\n";
46464646

46474647

46484648
}

0 commit comments

Comments
 (0)
Please sign in to comment.