summaryrefslogtreecommitdiff
path: root/indra/newview/gltf/accessor.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-09-11 22:32:03 +0300
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-09-12 09:40:20 +0300
commitac2cbdcc02efb8af88d91f02ec1b58022e4bf439 (patch)
treea4b369f18ca8f5c23b2daee4916a3883150b1546 /indra/newview/gltf/accessor.cpp
parentc3c45e00abd8b10679d911e1b92d2acb91aaf209 (diff)
#4660 Unable to upload GLTF+bin with spaces in the name
Diffstat (limited to 'indra/newview/gltf/accessor.cpp')
-rw-r--r--indra/newview/gltf/accessor.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/gltf/accessor.cpp b/indra/newview/gltf/accessor.cpp
index 03f7331893..f0ad3fa594 100644
--- a/indra/newview/gltf/accessor.cpp
+++ b/indra/newview/gltf/accessor.cpp
@@ -158,6 +158,11 @@ bool Buffer::prep(Asset& asset)
{
std::string dir = gDirUtilp->getDirName(asset.mFilename);
std::string bin_file = dir + gDirUtilp->getDirDelimiter() + mUri;
+ if (!gDirUtilp->fileExists(bin_file))
+ {
+ // Characters might be escaped in the URI
+ bin_file = dir + gDirUtilp->getDirDelimiter() + LLURI::unescape(mUri);
+ }
llifstream file(bin_file.c_str(), std::ios::binary);
if (!file.is_open())