re-enable falling-back to default avatar if an avatar's url is bad

This commit is contained in:
Seth Alves 2016-08-02 11:55:11 -07:00
parent 75f9626c2d
commit f91df4997d

View file

@ -925,8 +925,8 @@ void Avatar::setModelURLFinished(bool success) {
qDebug() << "Using default after failing to load Avatar model: " << _skeletonModelURL;
// call _skeletonModel.setURL, but leave our copy of _skeletonModelURL alone. This is so that
// we don't redo this every time we receive an identity packet from the avatar with the bad url.
// QMetaObject::invokeMethod(_skeletonModel.get(), "setURL",
// Qt::QueuedConnection, Q_ARG(QUrl, AvatarData::defaultFullAvatarModelUrl()));
QMetaObject::invokeMethod(_skeletonModel.get(), "setURL",
Qt::QueuedConnection, Q_ARG(QUrl, AvatarData::defaultFullAvatarModelUrl()));
}
}