fix webmention.js
This commit is contained in:
parent
d9daf7216c
commit
06522080eb
|
@ -392,7 +392,7 @@ A more detailed example:
|
||||||
let apiURL = `https://webmention.io/api/mentions.jf2?per-page=${maxWebmentions}&sort-by=${sortBy}&sort-dir=${sortDir}`;
|
let apiURL = `https://webmention.io/api/mentions.jf2?per-page=${maxWebmentions}&sort-by=${sortBy}&sort-dir=${sortDir}`;
|
||||||
|
|
||||||
pages.forEach(function (path) {
|
pages.forEach(function (path) {
|
||||||
apiURL += `&target[]=${encodeURIComponent('http:' + path)}&target[]=${encodeURIComponent('https:' + path)}&target[]=${encodeURIComponent('https:' + path.endsWith('/') ? path.slice(0, -1) : str)}`;
|
apiURL += `&target[]=${encodeURIComponent('http:' + path)}&target[]=${encodeURIComponent('https:' + path)}&target[]=${encodeURIComponent('https:' + path.replace(/\/$/, ""))}`;
|
||||||
});
|
});
|
||||||
|
|
||||||
/** @type {WebmentionResponse} */
|
/** @type {WebmentionResponse} */
|
||||||
|
|
Loading…
Reference in New Issue