summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/domain/contactcontroller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/domain/contactcontroller.cpp b/framework/domain/contactcontroller.cpp
index a1a805c9..49f78b40 100644
--- a/framework/domain/contactcontroller.cpp
+++ b/framework/domain/contactcontroller.cpp
@@ -42,7 +42,7 @@ void ContactController::loadContact(const QVariant &contact)
42 setName(c->getFn()); 42 setName(c->getFn());
43 QStringList emails; 43 QStringList emails;
44 for (const auto &e : c->getEmails()) { 44 for (const auto &e : c->getEmails()) {
45 emails << e; 45 emails << e.email;
46 } 46 }
47 setEmails(emails); 47 setEmails(emails);
48 } 48 }