Skip to content

Commit 0bc33b1

Browse files
committedOct 26, 2017
Clean auth DB path with cleanPath
1 parent a1574d0 commit 0bc33b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/auth/qgsauthmanager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ bool QgsAuthManager::init( const QString &pluginPath, const QString &authDatabas
197197
return isDisabled();
198198
}
199199

200-
mAuthDbPath = authDatabasePath;
200+
mAuthDbPath = QDir::cleanPath( authDatabasePath );
201201
QgsDebugMsg( QString( "Auth database path: %1" ).arg( authenticationDatabasePath() ) );
202202

203203
QFileInfo dbinfo( authenticationDatabasePath() );

0 commit comments

Comments
 (0)
Please sign in to comment.