mirror of
https://git.aaro.dev/VRCBoard/vrcboard-udon.git
synced 2026-03-17 01:09:45 +00:00
Do not return on null uploaderId, global image fix
This commit is contained in:
@@ -47,8 +47,8 @@ namespace VRCBoard.Components
|
||||
|
||||
if (string.IsNullOrEmpty(_uploaderId))
|
||||
{
|
||||
Debug.LogError("Failed to get uploader ID");
|
||||
return;
|
||||
Debug.LogWarning("Failed to get uploader ID");
|
||||
//return;
|
||||
}
|
||||
for (int i = 0; i < imageIds.Length; i++)
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user