Skip to content

Commit 4a66e9b

Browse files
committed
Always show exception content on upload error in status window
1 parent dc851d1 commit 4a66e9b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

VRChatApiTools/VRChatApiToolsUploadStatus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ public void SetErrorState(string header, string details)
239239
SetUploadState(UploadState.failed);
240240
_header = header;
241241
_status = details;
242-
AddLog($"<color=red>{details}</color>");
242+
AddLog($"<color=red>{header}{(details.Length > 0 ? " " + details : "")}</color>");
243243
Repaint();
244244
Logger.statusWindow = null;
245245
}

0 commit comments

Comments
 (0)