We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 020773e commit fde1148Copy full SHA for fde1148
src/main/kotlin/at/bitfire/dav4jvm/ktor/Response.kt
@@ -199,8 +199,8 @@ data class Response(
199
200
else -> {
201
if (location.protocol.name == href.protocol.name && location.host == href.host && location.port == href.port) {
202
- val locationSegments = location.segments
203
- val hrefSegments = href.segments
+ val locationSegments = location.rawSegments
+ val hrefSegments = href.rawSegments
204
205
// don't compare trailing slash segment ("")
206
var nBasePathSegments = locationSegments.size
0 commit comments