Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'omp-jb-54061' into 'master'
[nemo-qml-plugin-contacts] Fix assignment for newDisplayLabel. Fixes JB#54061

See merge request mer-core/nemo-qml-plugin-contacts!61
  • Loading branch information
pvuorela committed Apr 28, 2021
2 parents eb9db01 + a374bff commit dfdedb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/seasideperson.cpp
Expand Up @@ -283,7 +283,7 @@ void SeasidePerson::recalculateDisplayLabel(SeasideCache::DisplayLabelOrder orde
QString newDisplayLabel;
SeasideCache::CacheItem *cacheItem = SeasideCache::existingItem(mContact->id());
if (cacheItem) {
newDisplayLabel = cacheItem->displayLabel.isEmpty();
newDisplayLabel = cacheItem->displayLabel;
} else {
newDisplayLabel = generateDisplayLabel(*mContact, order);
}
Expand Down

0 comments on commit dfdedb9

Please sign in to comment.