Git commit 49499ebe68741bebdda4c71842f50ad55a18081a by Simon Redman. Committed on 31/03/2018 at 20:44. Pushed by sredman into branch 'contacts'. Break vcard into variable before writing for debugging M +2 -1 plugins/contacts/contactsplugin.cpp https://commits.kde.org/kdeconnect-kde/49499ebe68741bebdda4c71842f50ad55a18= 081a diff --git a/plugins/contacts/contactsplugin.cpp b/plugins/contacts/contact= splugin.cpp index 41123c5f..8306d724 100644 --- a/plugins/contacts/contactsplugin.cpp +++ b/plugins/contacts/contactsplugin.cpp @@ -179,7 +179,8 @@ bool ContactsPlugin::handleResponseVCards (const Networ= kPacket& np) { } = QTextStream fileWriteStream(&vcardFile); - fileWriteStream << np.get(ID); + const QString& vcard =3D np.get(ID); + fileWriteStream << vcard; } qCDebug(KDECONNECT_PLUGIN_CONTACTS) << "handleResponseVCards:" << "Got= " << uIDs.size() << "VCards"; Q_EMIT localCacheSynchronized(uIDs);