mirror of
https://gitlab.com/idotj/mastodon-embed-timeline.git
synced 2025-05-24 00:42:45 +00:00
Fix profile link uri encode problem
This commit is contained in:
parent
b5d22a4de4
commit
3e49d23798
@ -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") {
|
||||
|
Loading…
x
Reference in New Issue
Block a user