From 3e49d23798184421e8f04081ee8f8360c8edd7be Mon Sep 17 00:00:00 2001 From: "i.j" Date: Fri, 20 Oct 2023 21:43:56 +0000 Subject: [PATCH] Fix profile link uri encode problem --- src/mastodon-timeline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mastodon-timeline.js b/src/mastodon-timeline.js index f728426..2a18843 100644 --- a/src/mastodon-timeline.js +++ b/src/mastodon-timeline.js @@ -155,7 +155,7 @@ MastodonApi.prototype.buildTimeline = async function () { if (this.LINK_SEE_MORE) { let linkSeeMorePath = ""; if (this.TIMELINE_TYPE === "profile") { - linkSeeMorePath = encodeURIComponent(this.PROFILE_NAME); + linkSeeMorePath = this.PROFILE_NAME; } else if (this.TIMELINE_TYPE === "hashtag") { linkSeeMorePath = "tags/" + encodeURIComponent(this.HASHTAG_NAME); } else if (this.TIMELINE_TYPE === "local") {