We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68378cb commit fdfc446Copy full SHA for fdfc446
Project/Sources/Classes/URL.4dm
@@ -181,17 +181,17 @@ Function toString() : Text
181
182
// Convert the URL object to a string representation
183
var $URL : Text:=""
184
- If (Length(This.host)>0)
185
- If (Length(This.scheme)>0)
186
- $URL+=This.scheme+"://"
187
- End if
188
- If (Length(This.username)>0)
189
- $URL+=This.username
190
- If (Length(This.password)>0)
191
- $URL+=":"+This.password
192
193
- $URL+="@"
+ If (Length(This.scheme)>0)
+ $URL+=This.scheme+"://"
+ End if
+ If (Length(This.username)>0)
+ $URL+=This.username
+ If (Length(This.password)>0)
+ $URL+=":"+This.password
194
End if
+ $URL+="@"
+ If (Length(This.host)>0)
195
$URL+=This.host
196
197
If (This._port>0)
0 commit comments