Skip to content

Commit 59ffd77

Browse files
committed
Fixed bug processing URL parameters
1 parent be15de8 commit 59ffd77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/delimitedtext/qgsdelimitedtextfile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ bool QgsDelimitedTextFile::setFromUrl( QUrl &url )
181181
}
182182
if ( url.hasQueryItem( "skipEmptyFields" ) )
183183
{
184-
mDiscardEmptyFields = ! url.queryItemValue( "useHeader" ).toUpper().startsWith( 'N' );;
184+
mDiscardEmptyFields = ! url.queryItemValue( "skipEmptyFields" ).toUpper().startsWith( 'N' );;
185185
}
186186
if ( url.hasQueryItem( "trimFields" ) )
187187
{

0 commit comments

Comments
 (0)