Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix blacktoblock
  • Loading branch information
m-kuhn authored and nyalldawson committed Jul 12, 2020
1 parent 6250b6f commit 499c5d3
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/core/qgsvectorlayerjoininfo.cpp
Expand Up @@ -89,19 +89,13 @@ QStringList QgsVectorLayerJoinInfo::joinFieldNamesSubset( const QgsVectorLayerJo
{
if ( info.joinLayer() )
{
<<<<<<< HEAD
if ( !info.joinFieldNamesBlackList().contains( f.name() )
&& f.name() != info.joinFieldName() )
fieldNames.append( f.name() );
=======
const QgsFields fields { info.joinLayer()->fields() };
for ( const QgsField &f : fields )
{
if ( !info.joinFieldNamesBlockList().contains( f.name() )
if ( !info.joinFieldNamesBlackList().contains( f.name() )
&& f.name() != info.joinFieldName() )
fieldNames.append( f.name() );
}
>>>>>>> 06fea4ffe4... Merge pull request #37744 from m-kuhn/fix_offline_editing_with_aux_storage
}
}
}
Expand Down

0 comments on commit 499c5d3

Please sign in to comment.