fix 提示语错误

pull/2/head
gaibu 2022-03-27 21:31:23 +08:00
parent e3ddb29c18
commit f533a2e7c5
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public class FtpFileClient extends AbstractFileClient<FtpFileClientConfig> {
String dir = StrUtil.removeSuffix(filePath, fileName);
boolean success = ftp.upload(dir, fileName, new ByteArrayInputStream(content));
if (!success) {
throw new FtpException(StrUtil.format("上文件到目标目录 ({}) 失败", filePath));
throw new FtpException(StrUtil.format("上文件到目标目录 ({}) 失败", filePath));
}
// 拼接返回路径
return super.formatFileUrl(config.getDomain(), path);