Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aajtodd committed Feb 12, 2024
1 parent a41ede4 commit d0b0cd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public suspend fun dumpRequest(request: HttpRequestBuilder, dumpBody: Boolean):
request.headers.entries()
.filterNot { it.key in skip }
.forEach { (key, values) ->
buffer.writeUtf8(values.joinToString(separator = ";", prefix = "${key}: ", postfix = "\r\n"))
buffer.writeUtf8(values.joinToString(separator = ";", prefix = "$key: ", postfix = "\r\n"))
}

buffer.writeUtf8("\r\n")
Expand Down

0 comments on commit d0b0cd3

Please sign in to comment.