From bee0030515a2b71434fa92d4d416cb9682ce7591 Mon Sep 17 00:00:00 2001 From: Peter Sanchez Date: Tue, 2 Jul 2024 18:49:26 -0600 Subject: [PATCH] Adding correct social image url --- config.example.ini | 2 +- helpers.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.example.ini b/config.example.ini index edcf714..b73b6f2 100644 --- a/config.example.ini +++ b/config.example.ini @@ -108,7 +108,7 @@ prefix= # default-acl=private [access] -# Entropy is to be used as an encryption key. The value be the AES key, +# Entropy is to be used as an encryption key. The value will be the AES key, # either 16, 24, or 32 bytes to select AES-128, AES-192, or AES-256. entropy=Entropy value diff --git a/helpers.go b/helpers.go index e9dbf56..6530de5 100644 --- a/helpers.go +++ b/helpers.go @@ -1020,9 +1020,9 @@ func GetSEOData(c echo.Context) *SEOData { ), Keywords: lt.Translate("social bookmarks, bookmarking, links, link sharing, link shortening, link listings, bookmarks, link saving, qr codes, analytics"), URL: url.String(), - ImageURL: "https://s3.amazonaws.com/linktaco/social-media-image.jpg", + ImageURL: "https://s3.amazonaws.com/linktaco/media/web/lt-social-image.png", TwitterURL: url.String(), - TwitterImageURL: "https://s3.amazonaws.com/linktaco/social-media-image.jpg", + TwitterImageURL: "https://s3.amazonaws.com/linktaco/media/web/lt-social-image.png", } url.Path = c.Echo().Reverse("core:recent_link_list_rss") seoData.RssURL = url.String() -- 2.45.2