This repository was archived by the owner on Mar 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
owncloudComLibrary/src/main/java/com/owncloud/android/lib/common/http/methods/webdav Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ abstract class DavMethod protected constructor(url: URL) : HttpBaseMethod(url) {
99
99
super .setReadTimeout(readTimeout, timeUnit)
100
100
davResource = DavOCResource (
101
101
okHttpClient,
102
- httpUrl ,
102
+ request.url ,
103
103
log
104
104
)
105
105
}
@@ -111,7 +111,7 @@ abstract class DavMethod protected constructor(url: URL) : HttpBaseMethod(url) {
111
111
super .setConnectionTimeout(connectionTimeout, timeUnit)
112
112
davResource = DavOCResource (
113
113
okHttpClient,
114
- httpUrl ,
114
+ request.url ,
115
115
log
116
116
)
117
117
}
@@ -120,7 +120,7 @@ abstract class DavMethod protected constructor(url: URL) : HttpBaseMethod(url) {
120
120
super .setFollowRedirects(followRedirects)
121
121
davResource = DavOCResource (
122
122
okHttpClient,
123
- httpUrl ,
123
+ request.url ,
124
124
log
125
125
)
126
126
}
@@ -129,7 +129,7 @@ abstract class DavMethod protected constructor(url: URL) : HttpBaseMethod(url) {
129
129
super .setUrl(url)
130
130
davResource = DavOCResource (
131
131
okHttpClient,
132
- httpUrl ,
132
+ request.url ,
133
133
log
134
134
)
135
135
}
@@ -138,7 +138,7 @@ abstract class DavMethod protected constructor(url: URL) : HttpBaseMethod(url) {
138
138
super .setRequestHeader(name, value)
139
139
davResource = DavOCResource (
140
140
okHttpClient,
141
- httpUrl ,
141
+ request.url ,
142
142
log
143
143
)
144
144
}
@@ -150,7 +150,7 @@ abstract class DavMethod protected constructor(url: URL) : HttpBaseMethod(url) {
150
150
super .setRetryOnConnectionFailure(retryOnConnectionFailure)
151
151
davResource = DavOCResource (
152
152
okHttpClient,
153
- httpUrl ,
153
+ request.url ,
154
154
log
155
155
)
156
156
}
You can’t perform that action at this time.
0 commit comments