Skip to content

Commit db9d160

Browse files
committed
Fixed file parsing with spaces in name
1 parent a0f4903 commit db9d160

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Project/Sources/Classes/FileTransfer_curl.4dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Function _parseDirListing($success : Object)
286286
End if
287287
$diritem.date:=Add to date:C393(!00-00-00!; $year; $month; $day)
288288
$diritem.time:=$time
289-
$diritem.path:=$lineitems[8]
289+
$diritem.path:=($lineitems.slice(8).join(" "))
290290
$success.list.push($diritem)
291291
Else // error?
292292
If ($col.length=1)

0 commit comments

Comments
 (0)