We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c9abe7 + 8e74ec2 commit 5c213e6Copy full SHA for 5c213e6
Runtime/Core/Scripts/AvatarObjectLoader.cs
@@ -144,6 +144,11 @@ private async void Load(string url)
144
Failed(executor.IsCancelled ? FailureType.OperationCancelled : exception.FailureType, exception.Message);
145
return;
146
}
147
+ catch (Exception e)
148
+ {
149
+ Failed(FailureType.Unknown, e.Message);
150
+ return;
151
+ }
152
153
var avatar = (GameObject) context.Data;
154
avatar.SetActive(true);
Runtime/Core/Scripts/Data/Enums.cs
@@ -98,7 +98,8 @@ public enum FailureType
98
DirectoryAccessError,
99
AvatarProcessError,
100
AvatarRenderError,
101
- OperationCancelled
+ OperationCancelled,
102
+ Unknown
103
104
105
public enum Expression
0 commit comments