mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 23:28:09 +00:00
Read Vcard in UTF8 while SDK allows now it
This commit is contained in:
parent
0b7d9c0ff4
commit
e2be6e2c15
1 changed files with 1 additions and 1 deletions
|
|
@ -187,7 +187,7 @@ bool VcardModel::setAvatar (const QString &path) {
|
|||
// -----------------------------------------------------------------------------
|
||||
|
||||
QString VcardModel::getUsername () const {
|
||||
return Utils::coreStringToAppString(mVcard->getFullName());
|
||||
return QString::fromStdString(mVcard->getFullName());// Is in UTF8
|
||||
}
|
||||
|
||||
void VcardModel::setUsername (const QString &username) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue