Skip to content

Commit

Permalink
more robust check for network help location
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jan 10, 2017
1 parent 212406c commit 91a96d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgshelp.cpp
Expand Up @@ -73,7 +73,7 @@ QUrl QgsHelp::helpUrl( const QString& key )
{
helpPath = QStringLiteral( "%1/%2" ).arg( path ).arg( suffix );

if ( path.startsWith( QStringLiteral( "http://" ) ) )
if ( path.startsWith( QStringLiteral( "http" ) ) )
{
if ( !QgsHelp::urlExists( helpPath ) )
{
Expand Down

0 comments on commit 91a96d1

Please sign in to comment.