mirror of
https://git.aaro.dev/VRCBoard/vrcboard-udon.git
synced 2026-03-17 04:29:46 +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))
|
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++)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user