Skip to content
This repository has been archived by the owner on Sep 4, 2021. It is now read-only.

Commit

Permalink
[libcontacts] Ensure BT contacts are found for import merge
Browse files Browse the repository at this point in the history
When merging imported contacts into the existing data set, ensure that
contacts with 'bluetooth' syncTarget values are considered as potential
merge candidates.
  • Loading branch information
matthewvogt committed Jul 22, 2014
1 parent 70c48e8 commit c6e4010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/seasideimport.cpp
Expand Up @@ -94,7 +94,7 @@ QContactFilter localContactFilter()
filterWasLocal.setValue(QString::fromLatin1("was_local"));
filterBluetooth.setValue(QString::fromLatin1("bluetooth"));

return filterLocal | filterWasLocal;
return filterLocal | filterWasLocal | filterBluetooth;
}

bool nameIsEmpty(const QContactName &name)
Expand Down

0 comments on commit c6e4010

Please sign in to comment.