修复 SharePoint 无法直链下载的 bug

This commit is contained in:
zhaojun
2022-07-11 14:52:45 +08:00
parent 3b6ed1c78d
commit 60c272b714

View File

@@ -16,7 +16,7 @@ public abstract class AbstractSharePointServiceBase<P extends SharePointParam> e
@Override
public String getDownloadUrl(String pathAndName) {
return null;
return getFileItem(pathAndName).getUrl();
}
}