fix: network late headers (#173)

Co-authored-by: Florent Champigny <florent@bere.al>
This commit is contained in:
Florent CHAMPIGNY 2025-08-29 14:55:11 +02:00 committed by GitHub
parent f3d7e41b04
commit 1fbf415c06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 94 additions and 79 deletions

View file

@ -17,5 +17,6 @@ data class FloconNetworkResponse(
val body: String?,
val size: Long?,
val headers: Map<String, String>,
val requestHeaders: Map<String, String>?, // we might receive the request headers later if the interceptor is at first position in the http interceptor chain
val error: String?,
)