You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/BrowserConnector.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -224,7 +224,7 @@ class BrowserConnector(
224
224
)
225
225
226
226
val serializedEnrichmentParams = serializer.objectMapper.valueToTree<ObjectNode>(enrichmentParams)
227
-
val chatParams:ObjectNode= (node asObjectNode)
227
+
val chatParams:ObjectNode= (node.paramsasObjectNode)
228
228
.setAll(serializedEnrichmentParams)
229
229
230
230
val tabId = requestFromUi.params.tabId
@@ -235,7 +235,7 @@ class BrowserConnector(
235
235
val result =AmazonQLspService.executeIfRunning(project) { server ->
236
236
encryptionManager =this.encryptionManager
237
237
238
-
val encryptedParams =EncryptedChatParams(this.encryptionManager.encrypt(chatParams.params), partialResultToken)
238
+
val encryptedParams =EncryptedChatParams(this.encryptionManager.encrypt(chatParams), partialResultToken)
0 commit comments