fixed bug on image publishing from share app news widget

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/application-support-layer/applicationSupportLayerSocial@74845 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2013-05-10 17:05:27 +00:00
parent af449595a0
commit 8afcb434f2
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ public class ApplicationNewsManager extends SocialPortalBridge implements NewsMa
_log.error( "Problem disconnecting from FTP server" );
}
}
StringBuilder sb = new StringBuilder().append(httpBaseURL).append(fileName);
StringBuilder sb = new StringBuilder().append(httpBaseURL).append("/").append(fileName);
_log.info( "Uploaded file FTP server: http url: " + sb );
return sb.toString();
}