SL-9699 Fixed processing of placeholder

master
andreykproductengine 2019-11-17 18:21:49 +02:00
parent 75d9100625
commit e32a2e2f8a
1 changed files with 6 additions and 2 deletions

View File

@ -1230,8 +1230,12 @@ void LLPanelLogin::populateUserList(LLPointer<LLCredential> credential)
{
if (credential.notNull())
{
user_combo->add(LLPanelLogin::getUserName(credential), credential->userID(), ADD_BOTTOM, TRUE);
setFields(credential);
const LLSD &ident = credential->getIdentifier();
if (ident.isMap() && ident.has("type"))
{
user_combo->add(LLPanelLogin::getUserName(credential), credential->userID(), ADD_BOTTOM, TRUE);
setFields(credential);
}
}
}
}