mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 17:33:05 +02:00
Merge pull request #955 from overte-org/fix/script_avatar_url_getter
Fix access check in getSkeletonModelURLFromScript
This commit is contained in:
commit
8661e8a858
1 changed files with 1 additions and 1 deletions
|
@ -2107,7 +2107,7 @@ const QUrl& AvatarData::getSkeletonModelURL() const {
|
|||
}
|
||||
|
||||
QString AvatarData::getSkeletonModelURLFromScript() const {
|
||||
if (isMyAvatar() && !isMyAvatarURLProtected() && DependencyManager::get<NodeList>()->getThisNodeCanViewAssetURLs()) {
|
||||
if (isMyAvatar() && !isMyAvatarURLProtected()) {
|
||||
return _skeletonModelURL.toString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue