Fixed Ftp file path
This commit is contained in:
parent
580f4fdc3d
commit
bb45d90fae
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ public class UeBehaviourFtpDownload extends UeBehaviourFileDownload {
|
||||||
url += "@";
|
url += "@";
|
||||||
}
|
}
|
||||||
url += host;
|
url += host;
|
||||||
if(filePath != null && filePath.isEmpty()){
|
if(filePath != null && !filePath.isEmpty()){
|
||||||
if(!filePath.startsWith("/"))
|
if(!filePath.startsWith("/"))
|
||||||
filePath = "/"+filePath;
|
filePath = "/"+filePath;
|
||||||
url += filePath;
|
url += filePath;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue