diff --git a/Components/VRCBoardImage.cs b/Components/VRCBoardImage.cs index 986bd2c..95a15b0 100644 --- a/Components/VRCBoardImage.cs +++ b/Components/VRCBoardImage.cs @@ -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++) { diff --git a/Components/VRCBoardImageBasic.cs b/Components/VRCBoardImageBasic.cs index 68851e4..440aa35 100644 --- a/Components/VRCBoardImageBasic.cs +++ b/Components/VRCBoardImageBasic.cs @@ -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);