From 78b68214ff7d50708c7a194d15e812b1cbb51e48 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Thu, 24 Oct 2024 23:09:43 +0200 Subject: [PATCH] Fix share link building when `params` particle is present In these cases the site permalink is used instead of the social network URL for sharing as defined in the `link` value (https://www.linkedin.com/shareArticle in the below example) Most visible case is LinkedIn but all social networks that have ```toml [ananke.social.networks.particles] ... params = "..." ``` in `config/_default/params.toml` are affected by this bug. --- layouts/partials/func/social/getShareLink.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/func/social/getShareLink.html b/layouts/partials/func/social/getShareLink.html index 5025ae9..49c9390 100644 --- a/layouts/partials/func/social/getShareLink.html +++ b/layouts/partials/func/social/getShareLink.html @@ -10,7 +10,7 @@ {{- $link := fmt.Printf "%s%s" $setup.link "?" -}} {{- range $key, $value := $setup.particles -}} {{- if compare.Eq $key "params" -}} - {{- $link = fmt.Printf "%s%s%s" $permalink $separator $value -}} + {{- $link = fmt.Printf "%s%s%s" $link $separator $value -}} {{- else -}} {{- if compare.Eq $value "description" -}} {{- $link = fmt.Printf "%s%s%s" $link $separator (collections.Querify $key $description) -}}