Do not return on null uploaderId, global image fix

This commit is contained in:
2024-12-25 10:45:26 +02:00
parent 7f3e851854
commit fbad383093
2 changed files with 4 additions and 4 deletions

View File

@@ -47,8 +47,8 @@ namespace VRCBoard.Components
if (string.IsNullOrEmpty(_uploaderId)) if (string.IsNullOrEmpty(_uploaderId))
{ {
Debug.LogError("Failed to get uploader ID"); Debug.LogWarning("Failed to get uploader ID");
return; //return;
} }
for (int i = 0; i < imageIds.Length; i++) for (int i = 0; i < imageIds.Length; i++)
{ {

View File

@@ -56,8 +56,8 @@ namespace VRCBoard.Components
_uploaderId = GetUploader(albedoImageId); _uploaderId = GetUploader(albedoImageId);
if (string.IsNullOrEmpty(_uploaderId)) if (string.IsNullOrEmpty(_uploaderId))
{ {
Debug.LogError("Failed to get uploader ID"); Debug.LogWarning("Failed to get uploader ID");
return; //return;
} }
RequestImageLoad(albedoImageId, _uploaderId); RequestImageLoad(albedoImageId, _uploaderId);
RequestImageLoad(emissionImageId, _uploaderId); RequestImageLoad(emissionImageId, _uploaderId);