Skip to content

Commit cf96942

Browse files
Merge main into feature/disable-sspc
2 parents a36b418 + ab3b509 commit cf96942

File tree

1 file changed

+1
-1
lines changed
  • plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/flareChat

1 file changed

+1
-1
lines changed

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/flareChat/ChatCommunicationManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class ChatCommunicationManager(private val project: Project, private val cs: Cor
200200
var errorMessage: String? = null
201201
if (exception is ResponseErrorException) {
202202
errorMessage = tryOrNull {
203-
Gson().fromJson(exception.responseError.data as JsonObject, ChatMessage::class.java).body
203+
"${exception.responseError.message}: ${Gson().fromJson(exception.responseError.data as JsonObject, ChatMessage::class.java).body}"
204204
} ?: exception.responseError.message
205205
}
206206

0 commit comments

Comments
 (0)