We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e9aa87 commit ce22bd3Copy full SHA for ce22bd3
src/logic/actual.js
@@ -58,7 +58,7 @@ const getFileList = async (allowCache) => {
58
if (hrefEl.length >= 1) {
59
// Sharepoint 返回中包含 Unicode 字符,需要转义
60
directLink = encodeURI(hrefEl[0].textContent);
61
- directLink = directLink.replace('%25', '%');
+ directLink = directLink.replaceAll('%25', '%');
62
}
63
// 获得文件名
64
let nameEl = el.getElementsByTagName('D:displayname');
0 commit comments