From 46f0c3e3e6f27c0d41048331f095fcd30297a63a Mon Sep 17 00:00:00 2001 From: Daniel Lopes Date: Mon, 8 Jan 2024 17:00:04 +0100 Subject: [PATCH] fix(Transport): Disable automatic User Agent Suffix --- kotlin/src/main/com/looker/rtl/Transport.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin/src/main/com/looker/rtl/Transport.kt b/kotlin/src/main/com/looker/rtl/Transport.kt index 179c00901..f5854614f 100644 --- a/kotlin/src/main/com/looker/rtl/Transport.kt +++ b/kotlin/src/main/com/looker/rtl/Transport.kt @@ -351,7 +351,7 @@ class Transport(val options: TransportOptions) { finalizedRequestSettings.method.toString(), GenericUrl(finalizedRequestSettings.url), httpContent, - ) + ).setSuppressUserAgentSuffix(true) // TODO get overrides parameter to work without causing compilation errors in UserSession // overrides: TransportOptions? = null): SDKResponse {