We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 36d86b0 commit 8c3e066Copy full SHA for 8c3e066
src/app/qgisapp.cpp
@@ -4633,7 +4633,7 @@ void QgisApp::checkQgisVersion()
4633
connect( mSocket, SIGNAL( readyRead() ), SLOT( socketReadyRead() ) );
4634
connect( mSocket, SIGNAL( error( QAbstractSocket::SocketError ) ),
4635
SLOT( socketError( QAbstractSocket::SocketError ) ) );
4636
- mSocket->connectToHost( "mrcc.com", 80 );
+ mSocket->connectToHost( "qgis.org", 80 );
4637
}
4638
4639
void QgisApp::socketConnected()
@@ -4642,7 +4642,7 @@ void QgisApp::socketConnected()
4642
mVersionMessage = "";
4643
// send the qgis version string
4644
// os << QGIS_VERSION << "\r\n";
4645
- os << "GET /qgis/version.txt HTTP/1.0\n\n";
+ os << "GET /version.txt HTTP/1.0\n\n";
4646
4647
4648
0 commit comments