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

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